summaryrefslogtreecommitdiff
path: root/lib/rubygems/commands/query_command.rb
diff options
context:
space:
mode:
-rw-r--r--lib/rubygems/commands/query_command.rb14
1 files changed, 7 insertions, 7 deletions
@@ -192,9 +192,13 @@ class Gem::Commands::QueryCommand < Gem::Command
end
end
- def entry_details entry, spec, specs, platforms
return unless options[:details]
entry << "\n"
spec_platforms entry, platforms
@@ -228,19 +232,15 @@ class Gem::Commands::QueryCommand < Gem::Command
def make_entry entry_tuples, platforms
detail_tuple = entry_tuples.first
- name_tuple, latest_spec = detail_tuple
-
- latest_spec = latest_spec.fetch_spec name_tuple unless
- Gem::Specification === latest_spec
name_tuples, specs = entry_tuples.flatten.partition do |item|
Gem::NameTuple === item
end
- entry = [latest_spec.name]
entry_versions entry, name_tuples, platforms
- entry_details entry, latest_spec, specs, platforms
entry.join
end