This file is indexed.

/usr/lib/ruby/vendor_ruby/pry/commands/change_inspector.rb is in pry 0.10.3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
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