mirror of
https://github.com/ruby/ruby.git
synced 2025-09-18 18:13:58 +02:00
merge revision(s) 62244,62246,62301,62302,62303,62422,62436,62452: [Backport #14481]
Merge RubyGems-2.7.5 from upstream. Please see its details: http://blog.rubygems.org/2018/02/06/2.7.5-released.html test_gem_util.rb: fix broken test * test/rubygems/test_gem_util.rb: no guarantee that tmpdir is always underneath the root directory at all. test_gem_commands_setup_command.rb: BUNDLER_VERS * test/rubygems/test_gem_commands_setup_command.rb: run bundled gem command, instead of installed one. no need to set bundled bundler unless Gem::USE_BUNDLER_FOR_GEMDEPS revert r62302 and force to define the version constant Merge RubyGems 2.7.6 from upstream. It fixed some security vulnerabilities. http://blog.rubygems.org/2018/02/15/2.7.6-released.html fix regexp literal warning. test/rubygems/test_gem_server.rb: eliminate duplicated character class warning. [Bug #14481] Remove unnecessary `[]`s git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_5@62837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6d6880ff40
commit
90df7a08e4
58 changed files with 633 additions and 197 deletions
|
@ -488,7 +488,7 @@ class Gem::TestCase < MiniTest::Unit::TestCase
|
|||
|
||||
gemspec = "#{name}.gemspec"
|
||||
|
||||
open File.join(directory, gemspec), 'w' do |io|
|
||||
File.open File.join(directory, gemspec), 'w' do |io|
|
||||
io.write git_spec.to_ruby
|
||||
end
|
||||
|
||||
|
@ -592,7 +592,7 @@ class Gem::TestCase < MiniTest::Unit::TestCase
|
|||
# Reads a Marshal file at +path+
|
||||
|
||||
def read_cache(path)
|
||||
open path.dup.untaint, 'rb' do |io|
|
||||
File.open path.dup.untaint, 'rb' do |io|
|
||||
Marshal.load io.read
|
||||
end
|
||||
end
|
||||
|
@ -612,7 +612,7 @@ class Gem::TestCase < MiniTest::Unit::TestCase
|
|||
dir = File.dirname path
|
||||
FileUtils.mkdir_p dir unless File.directory? dir
|
||||
|
||||
open path, 'wb' do |io|
|
||||
File.open path, 'wb' do |io|
|
||||
yield io if block_given?
|
||||
end
|
||||
|
||||
|
@ -727,7 +727,7 @@ class Gem::TestCase < MiniTest::Unit::TestCase
|
|||
install_default_specs(*specs)
|
||||
|
||||
specs.each do |spec|
|
||||
open spec.loaded_from, 'w' do |io|
|
||||
File.open spec.loaded_from, 'w' do |io|
|
||||
io.write spec.to_ruby_for_cache
|
||||
end
|
||||
end
|
||||
|
@ -1363,7 +1363,7 @@ Also, a list:
|
|||
yield specification if block_given?
|
||||
end
|
||||
|
||||
open File.join(directory, "#{name}.gemspec"), 'w' do |io|
|
||||
File.open File.join(directory, "#{name}.gemspec"), 'w' do |io|
|
||||
io.write vendor_spec.to_ruby
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue