diff --git a/railties/environments/development.rb b/railties/environments/development.rb index 04b779200a193a540b69f20e37a253fa0a25f868..dbf77d03b7714d04d5b495366a4184927aadadf6 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 c9a4396c4e545dcb2923092a71945b3d0f5eb779..5a4e2b1c53cc6201773f0622e2c14b7c2ee24da9 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 6a4cddbd255aed14baabfd65fec989f7c0f84228..f0689b924bf935c9ca8cb91c578f2cba521e250c 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