##// END OF EJS Templates
add stderr to config.active_support.deprecation in test and dev env...
Toshi MARUYAMA -
r12165:90d3bb28b220
parent child
Show More
@@ -1,19 +1,19
1 1 # Settings specified here will take precedence over those in config/application.rb
2 2 RedmineApp::Application.configure do
3 3 # In the development environment your application's code is reloaded on
4 4 # every request. This slows down response time but is perfect for development
5 5 # since you don't have to restart the webserver when you make code changes.
6 6 config.cache_classes = false
7 7
8 8 # Log error messages when you accidentally call methods on nil.
9 9 config.whiny_nils = true
10 10
11 11 # Show full error reports and disable caching
12 12 #config.action_controller.consider_all_requests_local = true
13 13 config.action_controller.perform_caching = false
14 14
15 15 # Don't care if the mailer can't send
16 16 config.action_mailer.raise_delivery_errors = false
17 17
18 config.active_support.deprecation = :log
18 config.active_support.deprecation = [:stderr, :log]
19 19 end
@@ -1,30 +1,30
1 1 # Settings specified here will take precedence over those in config/application.rb
2 2 RedmineApp::Application.configure do
3 3 # The test environment is used exclusively to run your application's
4 4 # test suite. You never need to work with it otherwise. Remember that
5 5 # your test database is "scratch space" for the test suite and is wiped
6 6 # and recreated between test runs. Don't rely on the data there!
7 7 config.cache_classes = true
8 8
9 9 # Log error messages when you accidentally call methods on nil.
10 10 config.whiny_nils = true
11 11
12 12 # Show full error reports and disable caching
13 13 #config.action_controller.consider_all_requests_local = true
14 14 config.action_controller.perform_caching = false
15 15
16 16 config.action_mailer.perform_deliveries = true
17 17
18 18 # Tell Action Mailer not to deliver emails to the real world.
19 19 # The :test delivery method accumulates sent emails in the
20 20 # ActionMailer::Base.deliveries array.
21 21 config.action_mailer.delivery_method = :test
22 22
23 23 # Skip protect_from_forgery in requests
24 24 # http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application
25 25 config.action_controller.allow_forgery_protection = false
26 26
27 config.active_support.deprecation = :log
27 config.active_support.deprecation = [:stderr, :log]
28 28
29 29 config.secret_token = 'a secret token for running the tests'
30 30 end
General Comments 0
You need to be logged in to leave comments. Login now