aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/dummy/config/environments/test.rb
blob: ff0318412f3502fed70ee14d3901a6b53ec4f02d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
Rails.application.configure do
  config.cache_classes = true
  config.eager_load = false
  config.serve_static_assets  = true
  config.static_cache_control = 'public, max-age=3600'
  config.consider_all_requests_local       = true
  config.action_controller.perform_caching = false
  config.action_dispatch.show_exceptions = false
  config.action_controller.allow_forgery_protection = false
  config.action_mailer.delivery_method = :test
  config.active_support.deprecation = :stderr
  config.log_level = :debug
end