blob: ea221f9f12d5dd56345b4f1a5eb52d74d7c75e31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# frozen_string_literal: true
class Pry
class Command
class 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)
unless inspector_map.key?(inspector)
raise Pry::CommandError, "'#{inspector}' isn't a known inspector!"
end
pry_instance.print = inspector_map[inspector][:value]
output.puts "Switched to the '#{inspector}' inspector!"
end
private
def inspector_map
Pry::Inspector::MAP
end
Pry::Commands.add_command(self)
end
end
end
|