annotate config/environments/development.rb @ 1136:51d7f3e06556 redmine-2.2-integration

Fix "uninitialized constant Redmine::Scm::Adapters::CommandFailed" (see https://www.chiliproject.org/projects/chiliproject/repository/revisions/cbcce704006c6827b4a3134a2dda9de7c47f18ae)
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 10 Jan 2013 11:01:47 +0000
parents 433d4f72a19b
children dffacf8a6908
rev   line source
Chris@1115 1 # Settings specified here will take precedence over those in config/application.rb
Chris@1115 2 RedmineApp::Application.configure do
Chris@1115 3 # In the development environment your application's code is reloaded on
Chris@1115 4 # every request. This slows down response time but is perfect for development
Chris@1115 5 # since you don't have to restart the webserver when you make code changes.
Chris@1115 6 config.cache_classes = false
Chris@0 7
Chris@1115 8 # Log error messages when you accidentally call methods on nil.
Chris@1115 9 config.whiny_nils = true
Chris@0 10
Chris@1115 11 # Show full error reports and disable caching
Chris@1115 12 #config.action_controller.consider_all_requests_local = true
Chris@1115 13 config.action_controller.perform_caching = false
Chris@0 14
Chris@1115 15 # Don't care if the mailer can't send
Chris@1115 16 config.action_mailer.raise_delivery_errors = false
Chris@0 17
Chris@1115 18 config.active_support.deprecation = :log
Chris@1115 19 end