diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-09-14 02:01:36 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-09-14 02:01:36 +0000 |
commit | 4d5c414fcc0cd1c01580a1f9dc05a613c13929b2 (patch) | |
tree | b05b3accbce5cd7aae1cc9f73981aeab281d6578 /ext/zlib | |
parent | 9ea2102e57114d4c722b90355ab8ffe197938012 (diff) | |
download | ruby-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/zlib')
-rw-r--r-- | ext/zlib/zlib.gemspec | 35 |
1 files changed, 21 insertions, 14 deletions
diff --git a/ext/zlib/zlib.gemspec b/ext/zlib/zlib.gemspec index a073536f24..a0ac8fa423 100644 --- a/ext/zlib/zlib.gemspec +++ b/ext/zlib/zlib.gemspec @@ -1,18 +1,25 @@ +# coding: utf-8 # frozen_string_literal: true -Gem::Specification.new do |s| - s.name = "zlib" - s.version = '0.0.1' - s.date = '2017-02-03' - s.summary = "An interface for zlib." - s.description = "An interface for zlib." +Gem::Specification.new do |spec| + spec.name = "zlib" + spec.version = "0.1.0" + spec.date = '2017-09-13' + spec.authors = ["Yukihiro Matsumoto", "UENO Katsuhiro"] + spec.email = ["matz@ruby-lang.org", nil] - s.require_path = %w{lib} - s.files = %w{depend extconf.rb zlib.c} - s.extensions = %w{extconf.rb} - s.required_ruby_version = ">= 2.5.0dev" + spec.summary = %q{Ruby interface for the zlib compression/decompression library} + spec.description = %q{Ruby interface for the zlib compression/decompression library} + spec.homepage = "https://github.com/ruby/zlib" + spec.license = "BSD-2-Clause" - s.authors = ["UENO Katsuhiro"] - s.email = [nil] - s.homepage = "https://www.ruby-lang.org" - s.license = "BSD-2-Clause" + spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "ext/zlib/extconf.rb", "ext/zlib/zlib.c", "zlib.gemspec"] + spec.bindir = "exe" + spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } + spec.require_paths = ["lib"] + spec.extensions = "ext/zlib/extconf.rb" + spec.required_ruby_version = ">= 2.5.0dev" + + spec.add_development_dependency "bundler" + spec.add_development_dependency "rake" + spec.add_development_dependency "rake-compiler" end |