mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7d9109f800
They are assigned automatically when pushing gem file to rubygems.org. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64213 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
20 lines
659 B
Ruby
20 lines
659 B
Ruby
# frozen_string_literal: true
|
|
Gem::Specification.new do |s|
|
|
s.name = "dbm"
|
|
s.version = '1.0.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
|