aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rubygems.rb')
-rw-r--r--lib/rubygems.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rubygems.rb b/lib/rubygems.rb
index eca80cc985..e4360c616e 100644
--- a/lib/rubygems.rb
+++ b/lib/rubygems.rb
@@ -476,9 +476,9 @@ module Gem
load_path_files = suffixes.map do |sfx|
base = path + sfx
$LOAD_PATH.map {|load_path|
- File.expand_path(base, load_path)
- }.select {|f| File.file?(f.untaint)}
- end.flatten
+ Dir[File.expand_path(base, load_path)]
+ }
+ end.flatten.select {|f| File.file?(f.untaint)}
specs = searcher.find_all path