mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Application settings are specified in application.rb and not environment.rb
This commit is contained in:
parent
d5ef502d2a
commit
b59a8d42c3
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
<%= app_const %>.configure do
|
<%= app_const %>.configure do
|
||||||
# Settings specified here will take precedence over those in config/environment.rb
|
# Settings specified here will take precedence over those in config/application.rb
|
||||||
|
|
||||||
# In the development environment your application's code is reloaded on
|
# In the development environment your application's code is reloaded on
|
||||||
# every request. This slows down response time but is perfect for development
|
# every request. This slows down response time but is perfect for development
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<%= app_const %>.configure do
|
<%= app_const %>.configure do
|
||||||
# Settings specified here will take precedence over those in config/environment.rb
|
# Settings specified here will take precedence over those in config/application.rb
|
||||||
|
|
||||||
# The production environment is meant for finished, "live" apps.
|
# The production environment is meant for finished, "live" apps.
|
||||||
# Code is not reloaded between requests
|
# Code is not reloaded between requests
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<%= app_const %>.configure do
|
<%= app_const %>.configure do
|
||||||
# Settings specified here will take precedence over those in config/environment.rb
|
# Settings specified here will take precedence over those in config/application.rb
|
||||||
|
|
||||||
# The test environment is used exclusively to run your application's
|
# The test environment is used exclusively to run your application's
|
||||||
# test suite. You never need to work with it otherwise. Remember that
|
# test suite. You never need to work with it otherwise. Remember that
|
||||||
|
|
Loading…
Reference in a new issue