[前][次][番号順一覧][スレッド一覧]

ruby-changes:45429

From: hsbt <ko1@a...>
Date: Thu, 2 Feb 2017 17:39:00 +0900 (JST)
Subject: [ruby-changes:45429] hsbt:r57502 (trunk): Added initial gemspec for Date module.

hsbt	2017-02-02 17:38:54 +0900 (Thu, 02 Feb 2017)

  New Revision: 57502

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57502

  Log:
    Added initial gemspec for Date module.
    
      [Feature #13183]

  Added files:
    trunk/ext/date/date.gemspec
Index: ext/date/date.gemspec
===================================================================
--- ext/date/date.gemspec	(revision 0)
+++ ext/date/date.gemspec	(revision 57502)
@@ -0,0 +1,17 @@ https://github.com/ruby/ruby/blob/trunk/ext/date/date.gemspec#L1
+Gem::Specification.new do |s|
+  s.name = "date"
+  s.version = '0.0.1'
+  s.date = '2017-02-02'
+  s.summary = "A subclass of Object includes Comparable module for handling dates."
+  s.description = "A subclass of Object includes Comparable module for handling dates."
+
+  s.require_path = %w{lib}
+  s.files = %w{lib/date.rb date_core.c date_parse.c date_strftime.c date_strptime.c date_tmx.h depend extconf.rb prereq.mk zonetab.h zonetab.list}
+  s.extensions = %w{extconf.rb}
+  s.required_ruby_version = ">= 2.5.0"
+
+  s.authors = ["Tadayoshi Funaba"]
+  s.email = [nil]
+  s.homepage = "https://www.ruby-lang.org"
+  s.license = "BSD-2-Clause"
+end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]