This file is indexed.

/usr/lib/ruby/vendor_ruby/pry/commands/disable_pry.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
  class Command::DisablePry < Pry::ClassCommand
    match 'disable-pry'
    group 'Navigating Pry'
    description 'Stops all future calls to pry and exits the current session.'

    banner <<-'BANNER'
      Usage: disable-pry

      After this command is run any further calls to pry will immediately return `nil`
      without interrupting the flow of your program. This is particularly useful when
      you've debugged the problem you were having, and now wish the program to run to
      the end.

      As alternatives, consider using `exit!` to force the current Ruby process
      to quit immediately; or using `edit-method -p` to remove the `binding.pry`
      from the code.
    BANNER

    def process
      ENV['DISABLE_PRY'] = 'true'
      _pry_.run_command "exit"
    end
  end

  Pry::Commands.add_command(Pry::Command::DisablePry)
end