aboutsummaryrefslogtreecommitdiffstats
path: root/ext/sdbm
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-14 02:01:36 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-14 02:01:36 +0000
commit4d5c414fcc0cd1c01580a1f9dc05a613c13929b2 (patch)
treeb05b3accbce5cd7aae1cc9f73981aeab281d6578 /ext/sdbm
parent9ea2102e57114d4c722b90355ab8ffe197938012 (diff)
downloadruby-4d5c414fcc0cd1c01580a1f9dc05a613c13929b2.tar.gz
Update gemspec for gem released versions.
* These are dbm, fcntl, io-console, sdbm, stringio, strscan, zlib, cmath, scanf. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/sdbm')
-rw-r--r--ext/sdbm/sdbm.gemspec7
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/sdbm/sdbm.gemspec b/ext/sdbm/sdbm.gemspec
index c03695bda9..14c1072788 100644
--- a/ext/sdbm/sdbm.gemspec
+++ b/ext/sdbm/sdbm.gemspec
@@ -7,12 +7,15 @@ Gem::Specification.new do |s|
s.description = "Provides a simple file-based key-value store with String keys and values."
s.require_path = %w{lib}
- s.files = %w{_sdbm.c depend extconf.rb init.c sdbm.h}
- s.extensions = %w{extconf.rb}
+ 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"]
s.required_ruby_version = ">= 2.5.0dev"
s.authors = ["Yukihiro Matsumoto"]
s.email = ["matz@ruby-lang.org"]
s.homepage = "https://www.ruby-lang.org"
s.license = "BSD-2-Clause"
+
+ s.add_development_dependency "test-unit"
+ s.add_development_dependency "rake-compiler"
end