comparison config/environments/development.rb @ 1338:25603efa57b5

Merge from live branch
author Chris Cannam
date Thu, 20 Jun 2013 13:14:14 +0100
parents 433d4f72a19b
children dffacf8a6908
comparison
equal deleted inserted replaced
1209:1b1138f6f55e 1338:25603efa57b5
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