ruby-changes:61933
From: Nobuyoshi <ko1@a...>
Date: Thu, 25 Jun 2020 15:48:09 +0900 (JST)
Subject: [ruby-changes:61933] 9a78e24f7d (master): Removed nonsense `rubygems_version` in input gemspec files
https://git.ruby-lang.org/ruby.git/commit/?id=9a78e24f7d From 9a78e24f7d269c9688a0fa50c82751b5ec8d512a Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Thu, 25 Jun 2020 15:44:47 +0900 Subject: Removed nonsense `rubygems_version` in input gemspec files As it is ignored and set at building packages automatically, it is just nonsense to set in gemspec file for input. diff --git a/ext/json/json.gemspec b/ext/json/json.gemspec index 096f45e..30f5d70 100644 --- a/ext/json/json.gemspec +++ b/ext/json/json.gemspec @@ -131,7 +131,6 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/ext/json/json.gemspec#L131 s.licenses = ["Ruby"] s.rdoc_options = ["--title", "JSON implemention for Ruby", "--main", "README.md"] s.required_ruby_version = Gem::Requirement.new(">= 2.0") - s.rubygems_version = "3.0.3" s.summary = "JSON Implementation for Ruby" s.test_files = ["tests/test_helper.rb"] diff --git a/ext/psych/psych.gemspec b/ext/psych/psych.gemspec index 5f4bb43..e9e36e6 100644 --- a/ext/psych/psych.gemspec +++ b/ext/psych/psych.gemspec @@ -46,7 +46,6 @@ DESCRIPTION https://github.com/ruby/ruby/blob/trunk/ext/psych/psych.gemspec#L46 s.extra_rdoc_files = ["README.md"] s.required_ruby_version = Gem::Requirement.new(">= 2.4.0") - s.rubygems_version = "2.5.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if RUBY_ENGINE == 'jruby' diff --git a/ext/stringio/stringio.gemspec b/ext/stringio/stringio.gemspec index a16c757..4849481 100644 --- a/ext/stringio/stringio.gemspec +++ b/ext/stringio/stringio.gemspec @@ -24,7 +24,6 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/ext/stringio/stringio.gemspec#L24 s.homepage = "https://github.com/ruby/stringio" s.licenses = ["BSD-2-Clause"] s.required_ruby_version = ">= 2.5" - s.rubygems_version = "2.6.11" s.summary = "Pseudo IO on String" # s.cert_chain = %w[certs/nobu.pem] diff --git a/lib/racc/racc.gemspec b/lib/racc/racc.gemspec index 61356ec..31d0e58 100644 --- a/lib/racc/racc.gemspec +++ b/lib/racc/racc.gemspec @@ -82,7 +82,6 @@ DESC https://github.com/ruby/ruby/blob/trunk/lib/racc/racc.gemspec#L82 "test/testscanner.rb", "web/racc.en.rhtml", "web/racc.ja.rhtml" ] s.require_paths = ["lib"] - s.rubygems_version = "3.1.0.pre1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.rdoc_options = ["--main", "README.rdoc"] s.extra_rdoc_files = [ diff --git a/lib/rdoc/rdoc.gemspec b/lib/rdoc/rdoc.gemspec index 9b274c7..9ab60cb 100644 --- a/lib/rdoc/rdoc.gemspec +++ b/lib/rdoc/rdoc.gemspec @@ -241,6 +241,5 @@ RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentat https://github.com/ruby/ruby/blob/trunk/lib/rdoc/rdoc.gemspec#L241 ] s.required_ruby_version = Gem::Requirement.new(">= 2.4.0") - s.rubygems_version = "2.5.2" s.required_rubygems_version = Gem::Requirement.new(">= 2.2") end -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/