mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
20cdc22917
Improves consistency of capitalization and punctuation across various help text, plus some rewording and consolidating command groups.
27 lines
786 B
Ruby
27 lines
786 B
Ruby
class Pry::Command::ChangeInspector < Pry::ClassCommand
|
|
match 'change-inspector'
|
|
group 'Input and Output'
|
|
description 'Change the current inspector proc.'
|
|
command_options argument_required: true
|
|
banner <<-BANNER
|
|
Usage: change-inspector NAME
|
|
|
|
Change the proc used to print return values. See list-inspectors for a list
|
|
of available procs and a short description of what each one does.
|
|
BANNER
|
|
|
|
def process(inspector)
|
|
if inspector_map.key?(inspector)
|
|
_pry_.print = inspector_map[inspector][:value]
|
|
output.puts "Switched to the '#{inspector}' inspector!"
|
|
else
|
|
raise Pry::CommandError, "'#{inspector}' isn't a known inspector!"
|
|
end
|
|
end
|
|
|
|
private
|
|
def inspector_map
|
|
Pry::Inspector::MAP
|
|
end
|
|
Pry::Commands.add_command(self)
|
|
end
|