mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
4d5c414fcc
* 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
21 lines
692 B
Ruby
21 lines
692 B
Ruby
# frozen_string_literal: true
|
|
Gem::Specification.new do |s|
|
|
s.name = "dbm"
|
|
s.version = '1.0.0.beta1'
|
|
s.date = '2017-02-08'
|
|
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.5.0dev"
|
|
|
|
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
|