diff options
| -rw-r--r-- | railties/environments/development.rb | 2 | ||||
| -rw-r--r-- | railties/environments/production.rb | 2 | ||||
| -rw-r--r-- | railties/environments/test.rb | 2 | 
3 files changed, 6 insertions, 0 deletions
diff --git a/railties/environments/development.rb b/railties/environments/development.rb index a151c3ba11..04b779200a 100644 --- a/railties/environments/development.rb +++ b/railties/environments/development.rb @@ -1,3 +1,5 @@ +# Settings specified here will take precedence over those in config/environment.rb +  # In the development environment your application's code is reloaded on  # every request.  This slows down response time but is perfect for development  # since you don't have to restart the webserver when you make code changes. diff --git a/railties/environments/production.rb b/railties/environments/production.rb index f2b9ed6810..c9a4396c4e 100644 --- a/railties/environments/production.rb +++ b/railties/environments/production.rb @@ -1,3 +1,5 @@ +# Settings specified here will take precedence over those in config/environment.rb +  # The production environment is meant for finished, "live" apps.  # Code is not reloaded between requests  config.cache_classes = true diff --git a/railties/environments/test.rb b/railties/environments/test.rb index 3609f90f8d..6a4cddbd25 100644 --- a/railties/environments/test.rb +++ b/railties/environments/test.rb @@ -1,3 +1,5 @@ +# Settings specified here will take precedence over those in config/environment.rb +  # The test environment is used exclusively to run your application's  # test suite.  You never need to work with it otherwise.  Remember that  # your test database is "scratch space" for the test suite and is wiped  | 
