Sha256: 901fa04121aaf06b1d837fb77246690e7dc16dae456717553ef45dfc1edf47c8
Contents?: true
Size: 871 Bytes
Versions: 15
Compression:
Stored size: 871 Bytes
Contents
class Pry::Command::ListInspectors < Pry::ClassCommand match 'list-inspectors' group 'Input and Output' description 'List the inspector procs available for use.' banner <<-BANNER Usage: list-inspectors List the inspector procs available to print return values. You can use change-inspector to switch between them. BANNER def process output.puts heading("Available inspectors") + "\n" inspector_map.each do |name, inspector| output.write "Name: #{bold(name)}" output.puts selected_inspector?(inspector) ? selected_text : "" output.puts inspector[:description] output.puts end end private def inspector_map Pry::Inspector::MAP end def selected_text red " (selected) " end def selected_inspector?(inspector) _pry_.print == inspector[:value] end Pry::Commands.add_command(self) end
Version data entries
15 entries across 15 versions & 7 rubygems