ruby-changes:45439
From: hsbt <ko1@a...>
Date: Fri, 3 Feb 2017 21:39:08 +0900 (JST)
Subject: [ruby-changes:45439] hsbt:r57512 (trunk): Added initial gemspec for zlib module.
hsbt 2017-02-03 21:39:04 +0900 (Fri, 03 Feb 2017) New Revision: 57512 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57512 Log: Added initial gemspec for zlib module. [Feature #13186] Added files: trunk/ext/zlib/zlib.gemspec Index: ext/zlib/zlib.gemspec =================================================================== --- ext/zlib/zlib.gemspec (revision 0) +++ ext/zlib/zlib.gemspec (revision 57512) @@ -0,0 +1,17 @@ https://github.com/ruby/ruby/blob/trunk/ext/zlib/zlib.gemspec#L1 +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." + + s.require_path = %w{lib} + s.files = %w{depend extconf.rb zlib.c} + s.extensions = %w{extconf.rb} + s.required_ruby_version = ">= 2.5.0" + + s.authors = ["UENO Katsuhiro"] + s.email = [nil] + s.homepage = "https://www.ruby-lang.org" + s.license = "BSD-2-Clause" +end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/