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:
parent
33d1f172c8
commit
e775a930e1
4 changed files with 15 additions and 4 deletions
13
ChangeLog
13
ChangeLog
|
@ -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>
|
Wed Oct 16 09:42:42 2013 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
* lib/rubygems: Update to RubyGems master 278d00d. Changes:
|
* lib/rubygems: Update to RubyGems master 278d00d. Changes:
|
||||||
|
|
|
@ -35,7 +35,7 @@ class Gem::Commands::InstallCommand < Gem::Command
|
||||||
add_option(:"Install/Update", '-g', '--file [FILE]',
|
add_option(:"Install/Update", '-g', '--file [FILE]',
|
||||||
'Read from a gem dependencies API file and',
|
'Read from a gem dependencies API file and',
|
||||||
'install the listed gems') do |v,o|
|
'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
|
File.exist? file
|
||||||
end unless v
|
end unless v
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
# See LICENSE.txt for permissions.
|
# See LICENSE.txt for permissions.
|
||||||
#++
|
#++
|
||||||
|
|
||||||
require 'rubygems'
|
|
||||||
|
|
||||||
##
|
##
|
||||||
# Classes for building C extensions live here.
|
# Classes for building C extensions live here.
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
require 'rubygems/test_case'
|
require 'rubygems/test_case'
|
||||||
require 'rubygems/source/specific_file'
|
require 'rubygems/source'
|
||||||
|
|
||||||
class TestGemSourceSpecificFile < Gem::TestCase
|
class TestGemSourceSpecificFile < Gem::TestCase
|
||||||
def setup
|
def setup
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue