diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-11-09 08:37:17 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-11-09 08:37:17 +0000 |
commit | 70521c8f5955474bbf69cfde1526c528ddbbc960 (patch) | |
tree | 93db5fedcede75d7c7cf9eeb265b0d7b13b814ad /railties | |
parent | 44591ffb710701993ffdec0b61185f8067e4e78f (diff) | |
download | rails-70521c8f5955474bbf69cfde1526c528ddbbc960.tar.gz rails-70521c8f5955474bbf69cfde1526c528ddbbc960.tar.bz2 rails-70521c8f5955474bbf69cfde1526c528ddbbc960.zip |
Added note about precedence (closes #2790)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2949 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties')
-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 |