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

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
This commit is contained in:
hsbt 2017-09-14 02:01:36 +00:00
parent 9ea2102e57
commit 4d5c414fcc
9 changed files with 102 additions and 61 deletions

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true # frozen_string_literal: true
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "dbm" s.name = "dbm"
s.version = '0.5.1' s.version = '1.0.0.beta1'
s.date = '2017-02-08' s.date = '2017-02-08'
s.summary = "Provides a wrapper for the UNIX-style Database Manager Library" 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.description = "Provides a wrapper for the UNIX-style Database Manager Library"
@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.authors = ["Yukihiro Matsumoto"] s.authors = ["Yukihiro Matsumoto"]
s.email = ["matz@ruby-lang.org"] s.email = ["matz@ruby-lang.org"]
s.homepage = "https://www.ruby-lang.org" s.homepage = "https://github.com/ruby/dbm"
s.license = "BSD-2-Clause" s.license = "BSD-2-Clause"
s.add_development_dependency "rake-compiler" s.add_development_dependency "rake-compiler"

View file

@ -1,17 +1,26 @@
Gem::Specification.new do |s| # coding: utf-8
s.name = "fcntl" # frozen_string_literal: true
s.version = '0.0.1'
s.date = '2017-02-10'
s.summary = "Loads constants defined in the OS fcntl.h C header file"
s.description = "Loads constants defined in the OS fcntl.h C header file"
s.require_path = %w{lib} Gem::Specification.new do |spec|
s.files = %w{depend extconf.rb fcntl.c} spec.name = "fcntl"
s.extensions = %w{extconf.rb} spec.version = "0.0.1"
s.required_ruby_version = ">= 2.5.0dev" spec.date = '2017-02-10'
spec.authors = ["Yukihiro Matsumoto"]
spec.email = ["matz@ruby-lang.org"]
s.authors = ["Yukihiro Matsumoto"] spec.summary = "Loads constants defined in the OS fcntl.h C header file"
s.email = ["matz@ruby-lang.org"] spec.description = "Loads constants defined in the OS fcntl.h C header file"
s.homepage = "https://www.ruby-lang.org" spec.homepage = "https://github.com/ruby/fcntl"
s.license = "BSD-2-Clause" spec.license = "BSD-2-Clause"
spec.files = ["ext/fcntl/extconf.rb", "ext/fcntl/fcntl.c"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extensions = "ext/fcntl/extconf.rb"
spec.required_ruby_version = ">= 2.5.0dev"
spec.add_development_dependency "bundler", "~> 1.14"
spec.add_development_dependency "rake", "~> 12"
spec.add_development_dependency "rake-compiler"
end end

View file

@ -13,9 +13,12 @@ Gem::Specification.new do |s|
s.homepage = "https://www.ruby-lang.org" s.homepage = "https://www.ruby-lang.org"
s.authors = ["Nobu Nakada"] s.authors = ["Nobu Nakada"]
s.require_path = %[lib] s.require_path = %[lib]
s.files = %w[console.c depend extconf.rb lib/console/size.rb win32_vk.inc] s.files = %w[ext/io/console/console.c ext/io/console/extconf.rb lib/console/size.rb ext/io/console/win32_vk.inc]
s.extensions = %w[extconf.rb] s.extensions = %w[ext/io/console/extconf.rb]
s.license = "BSD-2-Clause" s.license = "BSD-2-Clause"
s.cert_chain = %w[certs/nobu.pem] s.cert_chain = %w[certs/nobu.pem]
s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/ s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
s.add_development_dependency 'rake-compiler'
s.add_development_dependency 'rake-compiler-dock', ">= 0.6.1"
end end

View file

@ -7,12 +7,15 @@ Gem::Specification.new do |s|
s.description = "Provides a simple file-based key-value store with String keys and values." s.description = "Provides a simple file-based key-value store with String keys and values."
s.require_path = %w{lib} s.require_path = %w{lib}
s.files = %w{_sdbm.c depend extconf.rb init.c sdbm.h} s.files = %w{ext/sdbm/_sdbm.c ext/sdbm/depend ext/sdbm/extconf.rb ext/sdbm/init.c ext/sdbm/sdbm.h}
s.extensions = %w{extconf.rb} s.extensions = ["ext/sdbm/extconf.rb"]
s.required_ruby_version = ">= 2.5.0dev" s.required_ruby_version = ">= 2.5.0dev"
s.authors = ["Yukihiro Matsumoto"] s.authors = ["Yukihiro Matsumoto"]
s.email = ["matz@ruby-lang.org"] s.email = ["matz@ruby-lang.org"]
s.homepage = "https://www.ruby-lang.org" s.homepage = "https://www.ruby-lang.org"
s.license = "BSD-2-Clause" s.license = "BSD-2-Clause"
s.add_development_dependency "test-unit"
s.add_development_dependency "rake-compiler"
end end

View file

@ -22,4 +22,6 @@ Gem::Specification.new do |s|
s.summary = "Pseudo IO on String".freeze s.summary = "Pseudo IO on String".freeze
s.cert_chain = %w[certs/nobu.pem] s.cert_chain = %w[certs/nobu.pem]
s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/ s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
s.add_development_dependency 'rake-compiler'
end end

View file

@ -7,7 +7,7 @@ Gem::Specification.new do |s|
s.description = "Provides lexical scanning operations on a String." s.description = "Provides lexical scanning operations on a String."
s.require_path = %w{lib} s.require_path = %w{lib}
s.files = %w{depend extconf.rb strscan.c} s.files = %w{ext/strscan/extconf.rb ext/strscan/strscan.c ext/strscan/regenc.h ext/strscan/regint.h}
s.extensions = %w{extconf.rb} s.extensions = %w{extconf.rb}
s.required_ruby_version = ">= 2.5.0dev" s.required_ruby_version = ">= 2.5.0dev"
@ -15,4 +15,6 @@ Gem::Specification.new do |s|
s.email = [nil] s.email = [nil]
s.homepage = "https://www.ruby-lang.org" s.homepage = "https://www.ruby-lang.org"
s.license = "BSD-2-Clause" s.license = "BSD-2-Clause"
s.add_development_dependency "rake-compiler"
end end

View file

@ -1,18 +1,25 @@
# coding: utf-8
# frozen_string_literal: true # frozen_string_literal: true
Gem::Specification.new do |s| Gem::Specification.new do |spec|
s.name = "zlib" spec.name = "zlib"
s.version = '0.0.1' spec.version = "0.1.0"
s.date = '2017-02-03' spec.date = '2017-09-13'
s.summary = "An interface for zlib." spec.authors = ["Yukihiro Matsumoto", "UENO Katsuhiro"]
s.description = "An interface for zlib." spec.email = ["matz@ruby-lang.org", nil]
s.require_path = %w{lib} spec.summary = %q{Ruby interface for the zlib compression/decompression library}
s.files = %w{depend extconf.rb zlib.c} spec.description = %q{Ruby interface for the zlib compression/decompression library}
s.extensions = %w{extconf.rb} spec.homepage = "https://github.com/ruby/zlib"
s.required_ruby_version = ">= 2.5.0dev" spec.license = "BSD-2-Clause"
s.authors = ["UENO Katsuhiro"] 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"]
s.email = [nil] spec.bindir = "exe"
s.homepage = "https://www.ruby-lang.org" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.license = "BSD-2-Clause" 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 end

View file

@ -1,17 +1,24 @@
# coding: utf-8
# frozen_string_literal: true # frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "cmath"
s.version = '0.0.1'
s.date = '2017-02-02'
s.summary = "Provides Trigonometric and Transcendental functions for complex numbers"
s.description = "CMath is a library that provides trigonometric and transcendental functions for complex numbers. The functions in this module accept integers, floating-point numbers or complex numbers as arguments."
s.require_path = %w{lib} Gem::Specification.new do |spec|
s.files = %w{cmath.rb} spec.name = "cmath"
s.required_ruby_version = ">= 2.5.0dev" spec.version = "0.0.1"
spec.date = '2017-02-02'
spec.authors = ["Tadayoshi Funaba"]
spec.email = [nil]
s.authors = ["Tadayoshi Funaba"] spec.summary = "Provides Trigonometric and Transcendental functions for complex numbers"
s.email = [nil] spec.description = "CMath is a library that provides trigonometric and transcendental functions for complex numbers. The functions in this module accept integers, floating-point numbers or complex numbers as arguments."
s.homepage = "https://www.ruby-lang.org" spec.homepage = "https://github.com/ruby/cmath"
s.license = "BSD-2-Clause" spec.license = "BSD-2-Clause"
spec.files = "lib/cmath.rb"
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.5.0dev"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
end end

View file

@ -1,17 +1,25 @@
# coding: utf-8
# frozen_string_literal: true # frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "scanf"
s.version = '0.0.1'
s.date = '2017-02-14'
s.summary = "scanf is an implementation of the C function scanf(3)."
s.description = "scanf is an implementation of the C function scanf(3)."
s.require_path = %w{lib} Gem::Specification.new do |spec|
s.files = %w{scanf.rb} spec.name = "scanf"
s.required_ruby_version = ">= 2.5.0dev" spec.version = "0.0.1"
spec.date = '2017-02-14'
spec.authors = ["David Alan Black"]
spec.email = ['dblack@superlink.net']
s.authors = ["David Alan Black"] spec.summary = "scanf is an implementation of the C function scanf(3)."
s.email = ['dblack@superlink.net'] spec.description = "scanf is an implementation of the C function scanf(3)."
s.homepage = "https://www.ruby-lang.org" spec.homepage = "https://github.com/ruby/scanf"
s.license = "BSD-2-Clause" spec.license = "BSD-2-Clause"
spec.files = ["lib/scanf.rb"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.5.0dev"
spec.add_development_dependency "bundler", "~> 1.14"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "test-unit"
end end