summaryrefslogtreecommitdiff
path: root/ext/sdbm/sdbm.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sdbm/sdbm.gemspec')
-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