From 70521c8f5955474bbf69cfde1526c528ddbbc960 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 9 Nov 2005 08:37:17 +0000 Subject: [PATCH] Added note about precedence (closes #2790) git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2949 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/environments/development.rb | 2 ++ railties/environments/production.rb | 2 ++ railties/environments/test.rb | 2 ++ 3 files changed, 6 insertions(+) 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 -- GitLab