This file is indexed.

/usr/lib/ruby/vendor_ruby/pry/prompt.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
class Pry::Prompt
  MAP = {
    "default" => {
      value: Pry::DEFAULT_PROMPT,
      description: "The default Pry prompt. Includes information about the\n" \
                   "current expression number, evaluation context, and nesting\n" \
                   "level, plus a reminder that you're using Pry."
    },

    "simple" => {
      value: Pry::SIMPLE_PROMPT,
      description: "A simple '>>'."
    },

    "nav" => {
      value: Pry::NAV_PROMPT,
      description: "A prompt that displays the binding stack as a path and\n" \
                   "includes information about _in_ and _out_."
    },

    "none" => {
      value: Pry::NO_PROMPT,
      description: "Wave goodbye to the Pry prompt."
    }
 }
end