mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00
Merge rubygems master.
This is RC version of Rubygems 2.7.0.
688fb7e83c
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6b05153a3a
commit
c00e84327f
96 changed files with 2021 additions and 701 deletions
|
@ -20,6 +20,13 @@ class TestGemCommandsSetupCommand < Gem::TestCase
|
|||
open 'lib/rubygems.rb', 'w' do |io| io.puts '# rubygems.rb' end
|
||||
open 'lib/rubygems/test_case.rb', 'w' do |io| io.puts '# test_case.rb' end
|
||||
open 'lib/rubygems/ssl_certs/rubygems.org/foo.pem', 'w' do |io| io.puts 'PEM' end
|
||||
|
||||
FileUtils.mkdir_p 'bundler/exe'
|
||||
FileUtils.mkdir_p 'bundler/lib/bundler'
|
||||
|
||||
open 'bundler/exe/bundle', 'w' do |io| io.puts '# bundle' end
|
||||
open 'bundler/lib/bundler.rb', 'w' do |io| io.puts '# bundler.rb' end
|
||||
open 'bundler/lib/bundler/b.rb', 'w' do |io| io.puts '# b.rb' end
|
||||
end
|
||||
|
||||
def test_pem_files_in
|
||||
|
@ -40,12 +47,18 @@ class TestGemCommandsSetupCommand < Gem::TestCase
|
|||
|
||||
assert_path_exists File.join(dir, 'rubygems.rb')
|
||||
assert_path_exists File.join(dir, 'rubygems/ssl_certs/rubygems.org/foo.pem')
|
||||
|
||||
if Gem::USE_BUNDLER_FOR_GEMDEPS
|
||||
assert_path_exists File.join(dir, 'bundler.rb')
|
||||
assert_path_exists File.join(dir, 'bundler/b.rb')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_remove_old_lib_files
|
||||
lib = File.join @install_dir, 'lib'
|
||||
lib_rubygems = File.join lib, 'rubygems'
|
||||
lib_bundler = File.join lib, 'bundler'
|
||||
lib_rubygems_defaults = File.join lib_rubygems, 'defaults'
|
||||
|
||||
securerandom_rb = File.join lib, 'securerandom.rb'
|
||||
|
@ -55,13 +68,16 @@ class TestGemCommandsSetupCommand < Gem::TestCase
|
|||
|
||||
old_builder_rb = File.join lib_rubygems, 'builder.rb'
|
||||
old_format_rb = File.join lib_rubygems, 'format.rb'
|
||||
old_bundler_c_rb = File.join lib_bundler, 'c.rb'
|
||||
|
||||
FileUtils.mkdir_p lib_rubygems_defaults
|
||||
FileUtils.mkdir_p lib_bundler
|
||||
|
||||
open securerandom_rb, 'w' do |io| io.puts '# securerandom.rb' end
|
||||
|
||||
open old_builder_rb, 'w' do |io| io.puts '# builder.rb' end
|
||||
open old_format_rb, 'w' do |io| io.puts '# format.rb' end
|
||||
open old_bundler_c_rb, 'w' do |io| io.puts '# c.rb' end
|
||||
|
||||
open engine_defaults_rb, 'w' do |io| io.puts '# jruby.rb' end
|
||||
open os_defaults_rb, 'w' do |io| io.puts '# operating_system.rb' end
|
||||
|
@ -70,6 +86,7 @@ class TestGemCommandsSetupCommand < Gem::TestCase
|
|||
|
||||
refute_path_exists old_builder_rb
|
||||
refute_path_exists old_format_rb
|
||||
refute_path_exists old_bundler_c_rb if Gem::USE_BUNDLER_FOR_GEMDEPS
|
||||
|
||||
assert_path_exists securerandom_rb
|
||||
assert_path_exists engine_defaults_rb
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue