This file is indexed.

/usr/lib/ruby/vendor_ruby/simple_navigation/config_file_finder.rb is in ruby-simple-navigation 4.0.3-1.

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
40
41
42
require 'simple_navigation/config_file'

module SimpleNavigation
  # Internal: Encapsulates the configuration file finding logic.
  class ConfigFileFinder
    # Internal: Initializes a ConfigFileFinder.
    #
    # paths - an enumerable list of paths in which to look for configuration
    #         files.
    def initialize(paths)
      @paths = paths
    end

    # Internal: Searches a configuration file for the given context in the
    # initialization paths.
    #
    # context - The navigation context for which to look the configuration file.
    #
    # Returns a String representing the full path of the configuation file.
    # Raises StandardError if no file is found.
    def find(context)
      config_file_name = config_file_name_for_context(context)

      find_config_file(config_file_name) ||
      fail("Config file '#{config_file_name}' not found in " \
           "path(s) #{paths.join(', ')}!")
    end

    private

    attr_reader :paths

    def config_file_name_for_context(context)
      ConfigFile.new(context).name
    end

    def find_config_file(config_file_name)
      paths.map { |path| File.join(path, config_file_name) }
           .find { |full_path| File.exist?(full_path) }
    end
  end
end