summaryrefslogtreecommitdiff
path: root/lib/rubygems/commands/stale_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rubygems/commands/stale_command.rb')
-rw-r--r--lib/rubygems/commands/stale_command.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rubygems/commands/stale_command.rb b/lib/rubygems/commands/stale_command.rb
index 9a024faa6d..712e62aa22 100644
--- a/lib/rubygems/commands/stale_command.rb
+++ b/lib/rubygems/commands/stale_command.rb
@@ -17,7 +17,8 @@ class Gem::Commands::StaleCommand < Gem::Command
def execute
gem_to_atime = {}
- Gem.source_index.each do |name, spec|
+ Gem::Specification.each do |spec|
+ name = spec.full_name
Dir["#{spec.full_gem_path}/**/*.*"].each do |file|
next if File.directory?(file)
stat = File.stat(file)