mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
![Kyrylo Silin](/assets/img/avatar_default.png)
John "banister" Mair describes the following key features of commands as classes: 1. It enables people to extend them by either subclassing or monkeypatching. 2. It enables them to provide their own API, so that for example, the Pry::Command::Edit class could have class methods for people to configure it. Please, note that I didn't touch easter eggs commands. I also prettified some strings (your source code reading experience should vastly improve!). Signed-off-by: Kyrylo Silin <kyrylosilin@gmail.com>
33 lines
905 B
Ruby
33 lines
905 B
Ruby
class Pry
|
|
class Command::GemList < Pry::ClassCommand
|
|
match 'gem-list'
|
|
group 'Gems'
|
|
description 'List and search installed gems.'
|
|
|
|
banner <<-BANNER
|
|
Usage: gem-list [REGEX]
|
|
|
|
List all installed gems, when a regex is provided, limit the output to those that
|
|
match the regex.
|
|
BANNER
|
|
|
|
def process(pattern = nil)
|
|
pattern = Regexp.compile(pattern || '')
|
|
gems = gem_list(pattern).group_by(&:name)
|
|
|
|
gems.each do |gem, specs|
|
|
specs.sort! do |a,b|
|
|
Gem::Version.new(b.version) <=> Gem::Version.new(a.version)
|
|
end
|
|
|
|
versions = specs.each_with_index.map do |spec, index|
|
|
index == 0 ? text.bright_green(spec.version.to_s) : text.green(spec.version.to_s)
|
|
end
|
|
|
|
output.puts "#{text.default gem} (#{versions.join ', '})"
|
|
end
|
|
end
|
|
end
|
|
|
|
Pry::Commands.add_command(Pry::Command::GemList)
|
|
end
|