diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-20 06:13:26 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-20 06:13:26 +0000 |
commit | c4d6b8bb3c531d3e6571ec7b91382ceeb4b616f7 (patch) | |
tree | 0066be208e6e01228f017b0361763f3c17d4f506 | |
parent | 6d627b6725beca23eb07ee7c924363eb6249cef0 (diff) | |
download | rails-c4d6b8bb3c531d3e6571ec7b91382ceeb4b616f7.tar.gz rails-c4d6b8bb3c531d3e6571ec7b91382ceeb4b616f7.tar.bz2 rails-c4d6b8bb3c531d3e6571ec7b91382ceeb4b616f7.zip |
Dont line up that which does not
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3999 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/environments/development.rb | 4 | ||||
-rw-r--r-- | railties/environments/production.rb | 3 | ||||
-rw-r--r-- | railties/environments/test.rb | 2 |
3 files changed, 4 insertions, 5 deletions
diff --git a/railties/environments/development.rb b/railties/environments/development.rb index 04b779200a..dbf77d03b7 100644 --- a/railties/environments/development.rb +++ b/railties/environments/development.rb @@ -3,10 +3,10 @@ # 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. -config.cache_classes = false +config.cache_classes = false # Log error messages when you accidentally call methods on nil. -config.whiny_nils = true +config.whiny_nils = true # Enable the breakpoint server that script/breakpointer connects to config.breakpoint_server = true diff --git a/railties/environments/production.rb b/railties/environments/production.rb index c9a4396c4e..5a4e2b1c53 100644 --- a/railties/environments/production.rb +++ b/railties/environments/production.rb @@ -5,8 +5,7 @@ config.cache_classes = true # Use a different logger for distributed setups -# config.logger = SyslogLogger.new - +# config.logger = SyslogLogger.new # Full error reports are disabled and caching is turned on config.action_controller.consider_all_requests_local = false diff --git a/railties/environments/test.rb b/railties/environments/test.rb index 6a4cddbd25..f0689b924b 100644 --- a/railties/environments/test.rb +++ b/railties/environments/test.rb @@ -7,7 +7,7 @@ config.cache_classes = true # Log error messages when you accidentally call methods on nil. -config.whiny_nils = true +config.whiny_nils = true # Show full error reports and disable caching config.action_controller.consider_all_requests_local = true |