Sha256: 8c33d3e6253eaf0f605b3245f4977ec3d0184deecd016a7c15fcc936cf4ee4d4
Contents?: true
Size: 786 Bytes
Versions: 174
Compression:
Stored size: 786 Bytes
Contents
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
Version data entries
174 entries across 167 versions & 40 rubygems