This file is indexed.

/usr/lib/ruby/vendor_ruby/actionpack/action_caching/railtie.rb is in ruby-actionpack-action-caching 1.2.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
13
require "rails/railtie"

module ActionPack
  module ActionCaching
    class Railtie < Rails::Railtie
      initializer "action_pack.action_caching" do
        ActiveSupport.on_load(:action_controller) do
          require "action_controller/action_caching"
        end
      end
    end
  end
end