method

new

new(*)
public

No documentation available.

# File railties/lib/rails/application/configuration.rb, line 17
      def initialize(*)
        super
        self.encoding = "utf-8"
        @allow_concurrency = false
        @consider_all_requests_local = false
        @filter_parameters = []
        @dependency_loading = true
        @serve_static_assets = true
        @session_store = :cookie_store
        @session_options = {}
        @time_zone = "UTC"
        @middleware = app_middleware
      end