class method
self.new
Ruby on Rails 3.0.20
Since v3.0.20Signature
self.new(*)
No documentation comment.
Parameters
-
argsrest
Source
# File railties/lib/rails/application/configuration.rb, line 19
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
Defined in railties/lib/rails/application/configuration.rb line 19
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Application::Configuration