зеркало из https://github.com/github/ruby.git
lib/rubygems/test_case.rb: take over @gem_prelude_index
Gem::TestCase normalizes each path in $LOAD_PATH, which deleted the flag of @gem_prelude_index. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63100 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
bc6e61f149
Коммит
6bcfa84849
|
@ -295,7 +295,16 @@ class Gem::TestCase < MiniTest::Unit::TestCase
|
|||
|
||||
@orig_LOAD_PATH = $LOAD_PATH.dup
|
||||
$LOAD_PATH.map! { |s|
|
||||
(expand_path = File.expand_path(s)) == s ? s : expand_path.untaint
|
||||
expand_path = File.expand_path(s)
|
||||
if expand_path != s
|
||||
expand_path.untaint
|
||||
if s.instance_variable_defined?(:@gem_prelude_index)
|
||||
expand_path.instance_variable_set(:@gem_prelude_index, expand_path)
|
||||
end
|
||||
expand_path.freeze if s.frozen?
|
||||
s = expand_path
|
||||
end
|
||||
s
|
||||
}
|
||||
|
||||
Dir.chdir @tempdir
|
||||
|
|
Загрузка…
Ссылка в новой задаче