annotate .svn/pristine/ea/ea483064a34e3a503dd035c85772b0bfb967063e.svn-base @ 1524:82fac3dcf466 redmine-2.5-integration

Fix failure to interpret Javascript when autocompleting members for project
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 11 Sep 2014 10:24:38 +0100
parents dffacf8a6908
children
rev   line source
Chris@1517 1 # Settings specified here will take precedence over those in config/application.rb
Chris@1517 2 RedmineApp::Application.configure do
Chris@1517 3 # In the development environment your application's code is reloaded on
Chris@1517 4 # every request. This slows down response time but is perfect for development
Chris@1517 5 # since you don't have to restart the webserver when you make code changes.
Chris@1517 6 config.cache_classes = false
Chris@1517 7
Chris@1517 8 # Log error messages when you accidentally call methods on nil.
Chris@1517 9 config.whiny_nils = true
Chris@1517 10
Chris@1517 11 # Show full error reports and disable caching
Chris@1517 12 #config.action_controller.consider_all_requests_local = true
Chris@1517 13 config.action_controller.perform_caching = false
Chris@1517 14
Chris@1517 15 # Don't care if the mailer can't send
Chris@1517 16 config.action_mailer.raise_delivery_errors = false
Chris@1517 17
Chris@1517 18 config.active_support.deprecation = [:stderr, :log]
Chris@1517 19 end