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

ruby-changes:44182

From: nagachika <ko1@a...>
Date: Mon, 26 Sep 2016 20:25:13 +0900 (JST)
Subject: [ruby-changes:44182] nagachika:r56255 (ruby_2_3): * gems/bundled_gems: update minitest to 5.8.5.

nagachika	2016-09-26 20:25:07 +0900 (Mon, 26 Sep 2016)

  New Revision: 56255

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

  Log:
    * gems/bundled_gems: update minitest to 5.8.5.
    
    * tool/downloader.rb: revert workarounds.
    
    * tool/gem-unpack.rb: ditto.

  Modified files:
    branches/ruby_2_3/ChangeLog
    branches/ruby_2_3/gems/bundled_gems
    branches/ruby_2_3/tool/downloader.rb
    branches/ruby_2_3/tool/gem-unpack.rb
    branches/ruby_2_3/version.h
Index: ruby_2_3/tool/gem-unpack.rb
===================================================================
--- ruby_2_3/tool/gem-unpack.rb	(revision 56254)
+++ ruby_2_3/tool/gem-unpack.rb	(revision 56255)
@@ -2,10 +2,10 @@ require 'rubygems' https://github.com/ruby/ruby/blob/trunk/ruby_2_3/tool/gem-unpack.rb#L2
 require 'rubygems/package'
 
 def Gem.unpack(file, dir = nil)
-  #policy = Gem::Security::LowSecurity
-  #(policy = policy.dup).ui = Gem::SilentUI.new
+  policy = Gem::Security::LowSecurity
+  (policy = policy.dup).ui = Gem::SilentUI.new
   pkg = Gem::Package.new(file)
-  #pkg.security_policy = policy
+  pkg.security_policy = policy
   spec = pkg.spec
   target = spec.full_name
   target = File.join(dir, target) if dir
Index: ruby_2_3/tool/downloader.rb
===================================================================
--- ruby_2_3/tool/downloader.rb	(revision 56254)
+++ ruby_2_3/tool/downloader.rb	(revision 56255)
@@ -61,7 +61,7 @@ class Downloader https://github.com/ruby/ruby/blob/trunk/ruby_2_3/tool/downloader.rb#L61
       pkg = Gem::Package.new(file)
       pkg.security_policy = policy
       begin
-        # pkg.verify
+        pkg.verify
       rescue Gem::Security::Exception => e
         $stderr.puts e.message
         File.unlink(file)
Index: ruby_2_3/ChangeLog
===================================================================
--- ruby_2_3/ChangeLog	(revision 56254)
+++ ruby_2_3/ChangeLog	(revision 56255)
@@ -1,3 +1,11 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/ChangeLog#L1
+Mon Sep 26 20:23:32 2016  CHIKANAGA Tomoyuki  <nagachika@r...>
+
+	* gems/bundled_gems: update minitest to 5.8.5.
+
+	* tool/downloader.rb: revert workarounds.
+
+	* tool/gem-unpack.rb: ditto.
+
 Mon Sep 26 07:26:44 2016  CHIKANAGA Tomoyuki  <nagachika@r...>
 
 	* tool/gem-unpack.rb: don't set security policy.
Index: ruby_2_3/gems/bundled_gems
===================================================================
--- ruby_2_3/gems/bundled_gems	(revision 56254)
+++ ruby_2_3/gems/bundled_gems	(revision 56255)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/gems/bundled_gems#L1
 power_assert 0.2.6
 test-unit 3.1.5
-minitest 5.8.3
+minitest 5.8.5
 rake 10.4.2
 net-telnet 0.1.1
 did_you_mean 1.0.0
Index: ruby_2_3/version.h
===================================================================
--- ruby_2_3/version.h	(revision 56254)
+++ ruby_2_3/version.h	(revision 56255)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/version.h#L1
 #define RUBY_VERSION "2.3.2"
 #define RUBY_RELEASE_DATE "2016-09-26"
-#define RUBY_PATCHLEVEL 188
+#define RUBY_PATCHLEVEL 189
 
 #define RUBY_RELEASE_YEAR 2016
 #define RUBY_RELEASE_MONTH 9

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

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