mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* gems/bundled_gems: update minitest to 5.8.5.
* tool/downloader.rb: revert workarounds. * tool/gem-unpack.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@56255 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6e7268733d
commit
ded336e9fb
5 changed files with 14 additions and 6 deletions
|
|
@ -1,3 +1,11 @@
|
|||
Mon Sep 26 20:23:32 2016 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
|
||||
|
||||
* 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@ruby-lang.org>
|
||||
|
||||
* tool/gem-unpack.rb: don't set security policy.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
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
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class Downloader
|
|||
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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue