Flowdock
new(*) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/application/configuration.rb, line 21
      def initialize(*)
        super
        self.encoding                    = Encoding::UTF_8
        @allow_concurrency               = nil
        @consider_all_requests_local     = false
        @filter_parameters               = []
        @filter_redirect                 = []
        @helpers_paths                   = []
        @public_file_server              = ActiveSupport::OrderedOptions.new
        @public_file_server.enabled      = true
        @public_file_server.index_name   = "index"
        @force_ssl                       = false
        @ssl_options                     = {}
        @session_store                   = nil
        @time_zone                       = "UTC"
        @beginning_of_week               = :monday
        @log_level                       = :debug
        @generators                      = app_generators
        @cache_store                     = [ :file_store, "#{root}/tmp/cache/" ]
        @railties_order                  = [:all]
        @relative_url_root               = ENV["RAILS_RELATIVE_URL_ROOT"]
        @reload_classes_only_on_change   = true
        @file_watcher                    = ActiveSupport::FileUpdateChecker
        @exceptions_app                  = nil
        @autoflush_log                   = true
        @log_formatter                   = ActiveSupport::Logger::SimpleFormatter.new
        @eager_load                      = nil
        @secret_token                    = nil
        @secret_key_base                 = nil
        @api_only                        = false
        @debug_exception_response_format = nil
        @x                               = Custom.new
        @enable_dependency_loading       = false
        @read_encrypted_secrets          = false
      end
Register or log in to add new notes.