From 6e7268733dd8eb81f30ba3901b49a09f2891b888 Mon Sep 17 00:00:00 2001 From: nagachika Date: Sun, 25 Sep 2016 22:28:53 +0000 Subject: * tool/gem-unpack.rb: don't set security policy. workaround for certificate expiration of minitest-5.8.3.gem. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@56244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ tool/gem-unpack.rb | 6 +++--- version.h | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index af15d6e156..b69e48bbf2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Sep 26 07:26:44 2016 CHIKANAGA Tomoyuki + + * tool/gem-unpack.rb: don't set security policy. + workaround for certificate expiration of minitest-5.8.3.gem. + Mon Sep 26 06:33:16 2016 Aaron Patterson * lib/uri/generic.rb (def check_password): don't include bad password diff --git a/tool/gem-unpack.rb b/tool/gem-unpack.rb index 7f84126677..69c9b45a85 100755 --- a/tool/gem-unpack.rb +++ b/tool/gem-unpack.rb @@ -2,10 +2,10 @@ require 'rubygems' 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 diff --git a/version.h b/version.h index db5cbf7f5b..e53fdddb91 100644 --- a/version.h +++ b/version.h @@ -1,6 +1,6 @@ #define RUBY_VERSION "2.3.2" #define RUBY_RELEASE_DATE "2016-09-26" -#define RUBY_PATCHLEVEL 187 +#define RUBY_PATCHLEVEL 188 #define RUBY_RELEASE_YEAR 2016 #define RUBY_RELEASE_MONTH 9 -- cgit v1.2.3