This file is indexed.

/usr/lib/ruby/vendor_ruby/active_support/railtie.rb is in ruby-activesupport-3.2 3.2.16-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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
require "active_support"
require "active_support/i18n_railtie"

module ActiveSupport
  class Railtie < Rails::Railtie
    config.active_support = ActiveSupport::OrderedOptions.new

    # Loads support for "whiny nil" (noisy warnings when methods are invoked
    # on +nil+ values) if Configuration#whiny_nils is true.
    initializer "active_support.initialize_whiny_nils" do |app|
      require 'active_support/whiny_nil' if app.config.whiny_nils
    end

    initializer "active_support.deprecation_behavior" do |app|
      if deprecation = app.config.active_support.deprecation
        ActiveSupport::Deprecation.behavior = deprecation
      else
        defaults = {"development" => :log,
                    "production"  => :notify,
                    "test"        => :stderr}

        env = Rails.env

        if defaults.key?(env)
          msg = "You did not specify how you would like Rails to report " \
                "deprecation notices for your #{env} environment, please " \
                "set config.active_support.deprecation to :#{defaults[env]} " \
                "at config/environments/#{env}.rb"

          warn msg
          ActiveSupport::Deprecation.behavior = defaults[env]
        else
          msg = "You did not specify how you would like Rails to report " \
                "deprecation notices for your #{env} environment, please " \
                "set config.active_support.deprecation to :log, :notify or " \
                ":stderr at config/environments/#{env}.rb"

          warn msg
          ActiveSupport::Deprecation.behavior = :stderr
        end
      end
    end

    # Sets the default value for Time.zone
    # If assigned value cannot be matched to a TimeZone, an exception will be raised.
    initializer "active_support.initialize_time_zone" do |app|
      require 'active_support/core_ext/time/zones'
      zone_default = Time.find_zone!(app.config.time_zone)

      unless zone_default
        raise \
          'Value assigned to config.time_zone not recognized.' +
          'Run "rake -D time" for a list of tasks for finding appropriate time zone names.'
      end

      Time.zone_default = zone_default
    end
  end
end