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-12-11 01:48:09 -05:00
|
|
|
|
2017-02-28 02:45:54 -05:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "sdbm"
|
2017-12-11 01:48:09 -05:00
|
|
|
s.version = '1.0.0'
|
|
|
|
s.date = '2017-12-11'
|
2017-02-28 02:45:54 -05:00
|
|
|
s.summary = "Provides a simple file-based key-value store with String keys and values."
|
|
|
|
s.description = "Provides a simple file-based key-value store with String keys and values."
|
|
|
|
|
|
|
|
s.require_path = %w{lib}
|
2017-09-13 22:01:36 -04:00
|
|
|
s.files = %w{ext/sdbm/_sdbm.c ext/sdbm/depend ext/sdbm/extconf.rb ext/sdbm/init.c ext/sdbm/sdbm.h}
|
|
|
|
s.extensions = ["ext/sdbm/extconf.rb"]
|
2017-12-11 01:48:09 -05:00
|
|
|
s.required_ruby_version = ">= 2.3.0"
|
2017-02-28 02:45:54 -05:00
|
|
|
|
|
|
|
s.authors = ["Yukihiro Matsumoto"]
|
|
|
|
s.email = ["matz@ruby-lang.org"]
|
2017-09-15 19:46:46 -04:00
|
|
|
s.homepage = "https://github.com/ruby/sdbm"
|
2017-02-28 02:45:54 -05:00
|
|
|
s.license = "BSD-2-Clause"
|
2017-09-13 22:01:36 -04:00
|
|
|
|
|
|
|
s.add_development_dependency "test-unit"
|
|
|
|
s.add_development_dependency "rake-compiler"
|
2017-02-28 02:45:54 -05:00
|
|
|
end
|