comparison config/environments/development.rb @ 1115:433d4f72a19b redmine-2.2

Update to Redmine SVN revision 11137 on 2.2-stable branch
author Chris Cannam
date Mon, 07 Jan 2013 12:01:42 +0000
parents 513646585e45
children dffacf8a6908
comparison
equal deleted inserted replaced
929:5f33065ddc4b 1115:433d4f72a19b
1 # Settings specified here will take precedence over those in config/environment.rb 1 # Settings specified here will take precedence over those in config/application.rb
2 RedmineApp::Application.configure do
3 # In the development environment your application's code is reloaded on
4 # every request. This slows down response time but is perfect for development
5 # since you don't have to restart the webserver when you make code changes.
6 config.cache_classes = false
2 7
3 # In the development environment your application's code is reloaded on 8 # Log error messages when you accidentally call methods on nil.
4 # every request. This slows down response time but is perfect for development 9 config.whiny_nils = true
5 # since you don't have to restart the webserver when you make code changes.
6 config.cache_classes = false
7 10
8 # Log error messages when you accidentally call methods on nil. 11 # Show full error reports and disable caching
9 config.whiny_nils = true 12 #config.action_controller.consider_all_requests_local = true
13 config.action_controller.perform_caching = false
10 14
11 # Show full error reports and disable caching 15 # Don't care if the mailer can't send
12 config.action_controller.consider_all_requests_local = true 16 config.action_mailer.raise_delivery_errors = false
13 config.action_controller.perform_caching = false
14 17
15 # Don't care if the mailer can't send 18 config.active_support.deprecation = :log
16 config.action_mailer.raise_delivery_errors = false 19 end