[前][次][番号順一覧][スレッド一覧]

ruby-changes:45488

From: hsbt <ko1@a...>
Date: Tue, 7 Feb 2017 16:14:27 +0900 (JST)
Subject: [ruby-changes:45488] hsbt:r57561 (trunk): Fix a required ruby version on gemspec of gemified libraries.

hsbt	2017-02-07 16:14:22 +0900 (Tue, 07 Feb 2017)

  New Revision: 57561

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57561

  Log:
    Fix a required ruby version on gemspec of gemified libraries.

  Modified files:
    trunk/ext/date/date.gemspec
    trunk/ext/zlib/zlib.gemspec
    trunk/lib/cmath.gemspec
    trunk/lib/csv.gemspec
    trunk/lib/fileutils.gemspec
    trunk/lib/webrick/webrick.gemspec
Index: lib/webrick/webrick.gemspec
===================================================================
--- lib/webrick/webrick.gemspec	(revision 57560)
+++ lib/webrick/webrick.gemspec	(revision 57561)
@@ -7,7 +7,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/lib/webrick/webrick.gemspec#L7
 
   s.require_path = %w{lib}
   s.files = %w{webrick.rb webrick/accesslog.rb webrick/cgi.rb webrick/compat.rb webrick/config.rb webrick/cookie.rb webrick/htmlutils.rb webrick/httpauth.rb webrick/httpauth/authenticator.rb webrick/httpauth/basicauth.rb webrick/httpauth/digestauth.rb webrick/httpauth/htdigest.rb webrick/httpauth/htgroup.rb webrick/httpauth/htpasswd.rb webrick/httpauth/userdb.rb webrick/httpauth.rb webrick/httpproxy.rb webrick/httprequest.rb webrick/httpresponse.rb webrick/https.rb webrick/httpserver.rb webrick/httpservlet.rb webrick/httpservlet/abstract.rb webrick/httpservlet/cgi_runner.rb webrick/httpservlet/cgihandler.rb webrick/httpservlet/erbhandler.rb webrick/httpservlet/filehandler.rb webrick/httpservlet/prochandler.rb webrick/httpservlet.rb webrick/httpstatus.rb webrick/httputils.rb webrick/httpversion.rb webrick/log.rb webrick/server.rb webrick/ssl.rb webrick/utils.rb webrick/version.rb}
-  s.required_ruby_version = ">= 2.5.0"
+  s.required_ruby_version = ">= 2.5.0dev"
 
   s.authors = ["TAKAHASHI Masayoshi", "GOTOU YUUZOU"]
   s.email = [nil, nil]
Index: lib/fileutils.gemspec
===================================================================
--- lib/fileutils.gemspec	(revision 57560)
+++ lib/fileutils.gemspec	(revision 57561)
@@ -7,7 +7,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/lib/fileutils.gemspec#L7
 
   s.require_path = %w{lib}
   s.files = %w{fileutils.rb}
-  s.required_ruby_version = ">= 2.5.0"
+  s.required_ruby_version = ">= 2.5.0dev"
 
   s.authors = ["Minero Aoki"]
   s.email = [nil]
Index: lib/csv.gemspec
===================================================================
--- lib/csv.gemspec	(revision 57560)
+++ lib/csv.gemspec	(revision 57561)
@@ -7,7 +7,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/lib/csv.gemspec#L7
 
   s.require_path = %w{lib}
   s.files = %w{csv.rb}
-  s.required_ruby_version = ">= 2.5.0"
+  s.required_ruby_version = ">= 2.5.0dev"
 
   s.authors = ["James Edward Gray II"]
   s.email = [nil]
Index: lib/cmath.gemspec
===================================================================
--- lib/cmath.gemspec	(revision 57560)
+++ lib/cmath.gemspec	(revision 57561)
@@ -7,7 +7,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/lib/cmath.gemspec#L7
 
   s.require_path = %w{lib}
   s.files = %w{cmath.rb}
-  s.required_ruby_version = ">= 2.5.0"
+  s.required_ruby_version = ">= 2.5.0dev"
 
   s.authors = ["Tadayoshi Funaba"]
   s.email = [nil]
Index: ext/zlib/zlib.gemspec
===================================================================
--- ext/zlib/zlib.gemspec	(revision 57560)
+++ ext/zlib/zlib.gemspec	(revision 57561)
@@ -8,7 +8,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/ext/zlib/zlib.gemspec#L8
   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.required_ruby_version = ">= 2.5.0dev"
 
   s.authors = ["UENO Katsuhiro"]
   s.email = [nil]
Index: ext/date/date.gemspec
===================================================================
--- ext/date/date.gemspec	(revision 57560)
+++ ext/date/date.gemspec	(revision 57561)
@@ -8,7 +8,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/ext/date/date.gemspec#L8
   s.require_path = %w{lib}
   s.files = %w{lib/date.rb date_core.c date_parse.c date_strftime.c date_strptime.c date_tmx.h depend extconf.rb prereq.mk zonetab.h zonetab.list}
   s.extensions = %w{extconf.rb}
-  s.required_ruby_version = ">= 2.5.0"
+  s.required_ruby_version = ">= 2.5.0dev"
 
   s.authors = ["Tadayoshi Funaba"]
   s.email = [nil]

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]