1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rubygems: Update to RubyGems master b955554. Changes:

Fixed NameError for Gem::Ext due to re-entering file lookup in
  RubyGems' overridden require.  Bug by Koichi Sasada.

  Fixed possible circular require warning in tests.

  Used existing constant for `gem install -g` dependecy file list.

* test/rubygems:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43300 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2013-10-16 06:00:39 +00:00
parent 33d1f172c8
commit e775a930e1
4 changed files with 15 additions and 4 deletions

View file

@ -1,3 +1,16 @@
Wed Oct 16 15:00:21 2013 Eric Hodel <drbrain@segment7.net>
* lib/rubygems: Update to RubyGems master b955554. Changes:
Fixed NameError for Gem::Ext due to re-entering file lookup in
RubyGems' overridden require. Bug by Koichi Sasada.
Fixed possible circular require warning in tests.
Used existing constant for `gem install -g` dependecy file list.
* test/rubygems: ditto.
Wed Oct 16 09:42:42 2013 Eric Hodel <drbrain@segment7.net>
* lib/rubygems: Update to RubyGems master 278d00d. Changes:

View file

@ -35,7 +35,7 @@ class Gem::Commands::InstallCommand < Gem::Command
add_option(:"Install/Update", '-g', '--file [FILE]',
'Read from a gem dependencies API file and',
'install the listed gems') do |v,o|
v = %w[gem.deps.rb Gemfile Isolate].find do |file|
v = Gem::GEM_DEP_FILES.find do |file|
File.exist? file
end unless v

View file

@ -4,8 +4,6 @@
# See LICENSE.txt for permissions.
#++
require 'rubygems'
##
# Classes for building C extensions live here.

View file

@ -1,5 +1,5 @@
require 'rubygems/test_case'
require 'rubygems/source/specific_file'
require 'rubygems/source'
class TestGemSourceSpecificFile < Gem::TestCase
def setup