2017-04-25 03:55:56 -04:00
|
|
|
# coding: utf-8
|
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-24 01:48:55 -05:00
|
|
|
|
2017-04-25 03:55:56 -04:00
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = "gdbm"
|
2019-11-30 04:13:16 -05:00
|
|
|
spec.version = "2.1.0"
|
2017-04-25 03:55:56 -04:00
|
|
|
spec.authors = ["Yukihiro Matsumoto"]
|
|
|
|
spec.email = ["matz@ruby-lang.org"]
|
2017-02-24 01:48:55 -05:00
|
|
|
|
2017-04-25 03:55:56 -04:00
|
|
|
spec.summary = "Ruby extension for GNU dbm."
|
|
|
|
spec.description = "Ruby extension for GNU dbm."
|
|
|
|
spec.homepage = "https://github.com/ruby/gdbm"
|
|
|
|
spec.license = "BSD-2-Clause"
|
|
|
|
|
|
|
|
spec.files = ["ext/gdbm/extconf.rb", "ext/gdbm/gdbm.c"]
|
|
|
|
spec.bindir = "exe"
|
|
|
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
|
|
spec.require_paths = ["lib"]
|
|
|
|
spec.extensions = ["ext/gdbm/extconf.rb"]
|
2017-12-06 03:34:34 -05:00
|
|
|
spec.required_ruby_version = ">= 2.3.0"
|
2017-02-24 01:48:55 -05:00
|
|
|
end
|