1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ext/dbm/dbm.gemspec

20 lines
659 B
Ruby

# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "dbm"
s.version = '1.1.0'
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}
s.files = %w{ext/dbm/extconf.rb ext/dbm/dbm.c}
s.extensions = %w{ext/dbm/extconf.rb}
s.required_ruby_version = ">= 2.3.0"
s.authors = ["Yukihiro Matsumoto"]
s.email = ["matz@ruby-lang.org"]
s.homepage = "https://github.com/ruby/dbm"
s.license = "BSD-2-Clause"
s.add_development_dependency "rake-compiler"
s.add_development_dependency "test-unit"
end