This file is indexed.

/usr/lib/ruby/vendor_ruby/simple_navigation/rendering.rb is in ruby-simple-navigation 3.11.0-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
require 'simple_navigation/rendering/helpers'
require 'simple_navigation/rendering/renderer/base'

module SimpleNavigation
  module Renderer
    autoload :List, 'simple_navigation/rendering/renderer/list'
    autoload :Links, 'simple_navigation/rendering/renderer/links'
    autoload :Breadcrumbs, 'simple_navigation/rendering/renderer/breadcrumbs'
    autoload :Text, 'simple_navigation/rendering/renderer/text'
    autoload :Json, 'simple_navigation/rendering/renderer/json'
  end
end