summaryrefslogtreecommitdiff
path: root/lib/rubygems/commands/specification_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rubygems/commands/specification_command.rb')
-rw-r--r--lib/rubygems/commands/specification_command.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rubygems/commands/specification_command.rb b/lib/rubygems/commands/specification_command.rb
index 954b38ac37..1ab2ad9260 100644
--- a/lib/rubygems/commands/specification_command.rb
+++ b/lib/rubygems/commands/specification_command.rb
@@ -58,12 +58,12 @@ class Gem::Commands::SpecificationCommand < Gem::Command
terminate_interaction 1
end
- output = lambda { |spec| say spec.to_yaml; say "\n" }
+ output = lambda { |s| say s.to_yaml; say "\n" }
if options[:all] then
specs.each(&output)
else
- spec = specs.sort_by { |spec| spec.version }.last
+ spec = specs.sort_by { |s| s.version }.last
output[spec]
end
end