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-08 05:05:13 -05:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "dbm"
|
2017-12-06 03:32:01 -05:00
|
|
|
s.version = '1.0.0'
|
2017-02-08 05:05:13 -05:00
|
|
|
s.summary = "Provides a wrapper for the UNIX-style Database Manager Library"
|
|
|
|
s.description = "Provides a wrapper for the UNIX-style Database Manager Library"
|
|
|
|
|
|
|
|
s.require_path = %w{lib}
|
2017-04-11 04:49:01 -04:00
|
|
|
s.files = %w{ext/dbm/extconf.rb ext/dbm/dbm.c}
|
|
|
|
s.extensions = %w{ext/dbm/extconf.rb}
|
2017-12-06 03:32:01 -05:00
|
|
|
s.required_ruby_version = ">= 2.3.0"
|
2017-02-08 05:05:13 -05:00
|
|
|
|
|
|
|
s.authors = ["Yukihiro Matsumoto"]
|
|
|
|
s.email = ["matz@ruby-lang.org"]
|
2017-09-13 22:01:36 -04:00
|
|
|
s.homepage = "https://github.com/ruby/dbm"
|
2017-02-08 05:05:13 -05:00
|
|
|
s.license = "BSD-2-Clause"
|
2017-04-11 04:49:01 -04:00
|
|
|
|
|
|
|
s.add_development_dependency "rake-compiler"
|
|
|
|
s.add_development_dependency "test-unit"
|
2017-02-08 05:05:13 -05:00
|
|
|
end
|