Make string literal to frozen object on gemspec of defulte gems.
Added following gemspecs.
* extensions: date, dbm, etc, fiddle, gdbm, sdbm, stringio, strscan, zlib
* pure ruby libraries: cmath, csv, fileutils, scanf, webrick
psych and rdoc is out of scope of this commit. I will merge after
upstream was change to `frozen_string_literal: true`.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-06-19 09:03:06 -04:00
|
|
|
# frozen_string_literal: true
|
2017-02-02 03:38:54 -05:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "date"
|
2017-12-10 22:56:01 -05:00
|
|
|
s.version = '1.0.0'
|
|
|
|
s.date = '2017-12-11'
|
2017-02-02 03:38:54 -05:00
|
|
|
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}
|
2017-07-14 03:47:21 -04:00
|
|
|
s.files = [
|
|
|
|
"lib/date.rb", "ext/date/date_core.c", "ext/date/date_parse.c", "ext/date/date_strftime.c",
|
|
|
|
"ext/date/date_strptime.c", "ext/date/date_tmx.h", "ext/date/extconf.rb", "ext/date/prereq.mk",
|
|
|
|
"ext/date/zonetab.h", "ext/date/zonetab.list"
|
|
|
|
]
|
|
|
|
s.extensions = "ext/date/extconf.rb"
|
2017-12-10 22:56:01 -05:00
|
|
|
s.required_ruby_version = ">= 2.4.0"
|
2017-02-02 03:38:54 -05:00
|
|
|
|
|
|
|
s.authors = ["Tadayoshi Funaba"]
|
|
|
|
s.email = [nil]
|
2017-07-14 03:47:21 -04:00
|
|
|
s.homepage = "https://github.com/ruby/date"
|
2017-02-02 03:38:54 -05:00
|
|
|
s.license = "BSD-2-Clause"
|
2017-07-14 03:47:21 -04:00
|
|
|
|
|
|
|
s.add_development_dependency "rake-compiler"
|
2017-02-02 03:38:54 -05:00
|
|
|
end
|