This file is indexed.

/usr/lib/ruby/vendor_ruby/pry/commands/ls/local_vars.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
28
29
30
31
32
33
34
35
36
37
38
39
class Pry
  class Command::Ls < Pry::ClassCommand
    class LocalVars < Pry::Command::Ls::Formatter

      def initialize(opts, _pry_)
        super(_pry_)
        @default_switch = opts[:locals]
        @sticky_locals = _pry_.sticky_locals
      end

      def output_self
        name_value_pairs = @target.eval('local_variables').reject { |e|
          @sticky_locals.keys.include?(e.to_sym)
        }.map { |name|
          [name, (@target.eval(name.to_s))]
        }
        format(name_value_pairs).join('')
      end

      private

      def format(name_value_pairs)
        name_value_pairs.sort_by { |name, value|
          value.to_s.size
        }.reverse.map { |name, value|
          colorized_assignment_style(name, format_value(value))
        }
      end

      def colorized_assignment_style(lhs, rhs, desired_width = 7)
        colorized_lhs = color(:local_var, lhs)
        color_escape_padding = colorized_lhs.size - lhs.size
        pad = desired_width + color_escape_padding
        "%-#{pad}s = %s" % [color(:local_var, colorized_lhs), rhs]
      end

    end
  end
end