From c4d6b8bb3c531d3e6571ec7b91382ceeb4b616f7 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 20 Mar 2006 06:13:26 +0000 Subject: [PATCH] Dont line up that which does not git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3999 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/environments/development.rb | 4 ++-- railties/environments/production.rb | 3 +-- 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 -- GitLab