* lib/rubygems: Update to RubyGems master ec8ed22. Notable changes

include:

  * Renamed extension_install_dir to extension_dir (backwards
    compatible).

  * Fixed creation of gem.deps.rb.lock file from
    TestGemRequestSet#test_install_from_gemdeps_install_dir

  * Fixed a typo and some documentation.

* test/rubygems:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44129 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2013-12-10 19:54:19 +00:00
parent d36a129d7b
commit d6a5fe709e
17 changed files with 77 additions and 69 deletions

View file

@ -407,7 +407,7 @@ class TestGemDependencyInstaller < Gem::TestCase
_, f1_gem = util_gem 'f', '1', 'e' => nil
Gem::Installer.new(e1_gem).install
FileUtils.rm_r e1.extension_install_dir
FileUtils.rm_r e1.extension_dir
FileUtils.mv e1_gem, @tempdir
FileUtils.mv f1_gem, @tempdir
@ -420,7 +420,7 @@ class TestGemDependencyInstaller < Gem::TestCase
assert_equal %w[f-1], inst.installed_gems.map { |s| s.full_name }
assert_path_exists e1.extension_install_dir
assert_path_exists e1.extension_dir
end
def test_install_dependency_old