To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / c4 / c4837138f02cd9a9926736a32cfa25cf8b4c7fea.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (1.23 KB)
| 1 | 1296:038ba2d95de8 | Chris | # Settings specified here will take precedence over those in config/application.rb |
|---|---|---|---|
| 2 | RedmineApp::Application.configure do |
||
| 3 | # The test environment is used exclusively to run your application's |
||
| 4 | # test suite. You never need to work with it otherwise. Remember that |
||
| 5 | # your test database is "scratch space" for the test suite and is wiped |
||
| 6 | # and recreated between test runs. Don't rely on the data there! |
||
| 7 | config.cache_classes = true |
||
| 8 | |||
| 9 | # Log error messages when you accidentally call methods on nil. |
||
| 10 | config.whiny_nils = true |
||
| 11 | |||
| 12 | # Show full error reports and disable caching |
||
| 13 | #config.action_controller.consider_all_requests_local = true |
||
| 14 | config.action_controller.perform_caching = false |
||
| 15 | |||
| 16 | config.action_mailer.perform_deliveries = true |
||
| 17 | |||
| 18 | # Tell Action Mailer not to deliver emails to the real world. |
||
| 19 | # The :test delivery method accumulates sent emails in the |
||
| 20 | # ActionMailer::Base.deliveries array. |
||
| 21 | config.action_mailer.delivery_method = :test |
||
| 22 | |||
| 23 | # Skip protect_from_forgery in requests |
||
| 24 | # http://m.onkey.org/2007/9/28/csrf-protection-for-your-existing-rails-application |
||
| 25 | config.action_controller.allow_forgery_protection = false |
||
| 26 | |||
| 27 | config.active_support.deprecation = :log |
||
| 28 | |||
| 29 | config.secret_token = 'a secret token for running the tests' |
||
| 30 | end |