mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 05:55:46 +02:00
Revert "[rubygems/rubygems] [Require] Ensure -I beats a default gem"
This reverts commit 00cd5d74ce
.
This commit is contained in:
parent
efd37f8fc3
commit
75d29db8f9
3 changed files with 0 additions and 54 deletions
|
@ -36,26 +36,6 @@ module Kernel
|
|||
|
||||
path = path.to_path if path.respond_to? :to_path
|
||||
|
||||
resolved_path = begin
|
||||
rp = nil
|
||||
$LOAD_PATH[0...Gem.load_path_insert_index || -1].each do |lp|
|
||||
Gem.suffixes.each do |s|
|
||||
full_path = File.expand_path(File.join(lp, "#{path}#{s}").untaint)
|
||||
if File.file?(full_path)
|
||||
rp = full_path
|
||||
break
|
||||
end
|
||||
end
|
||||
break if rp
|
||||
end
|
||||
rp
|
||||
end
|
||||
|
||||
if resolved_path
|
||||
RUBYGEMS_ACTIVATION_MONITOR.exit
|
||||
return gem_original_require(resolved_path)
|
||||
end
|
||||
|
||||
if spec = Gem.find_unresolved_default_spec(path)
|
||||
begin
|
||||
Kernel.send(:gem, spec.name, "#{Gem::Requirement.default}.a")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue