1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix RubyGems for 1.9, r1780

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17393 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2008-06-17 23:59:31 +00:00
parent 9d4f37f51f
commit 215fbc639f
10 changed files with 86 additions and 90 deletions

View file

@ -131,18 +131,18 @@ class Gem::Commands::QueryCommand < Gem::Command
versions[spec_tuple.first] << [spec_tuple, source_uri]
end
versions = versions.sort_by do |(name,),|
versions = versions.sort_by do |(name,_),_|
name.downcase
end
versions.each do |gem_name, matching_tuples|
matching_tuples = matching_tuples.sort_by do |(name, version,),|
matching_tuples = matching_tuples.sort_by do |(name, version,_),_|
version
end.reverse
seen = {}
matching_tuples.delete_if do |(name, version,),|
matching_tuples.delete_if do |(name, version,_),_|
if seen[version] then
true
else
@ -154,7 +154,7 @@ class Gem::Commands::QueryCommand < Gem::Command
entry = gem_name.dup
if options[:versions] then
versions = matching_tuples.map { |(name, version,),| version }.uniq
versions = matching_tuples.map { |(name, version,_),_| version }.uniq
entry << " (#{versions.join ', '})"
end