2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2014-07-30 05:24:20 +00:00
|
|
|
Metamaps::Application.configure do
|
2012-09-23 02:39:12 +00:00
|
|
|
# Settings specified here will take precedence over those in config/application.rb
|
|
|
|
|
2015-09-10 09:43:58 +00:00
|
|
|
config.eager_load = false
|
|
|
|
|
2012-09-23 02:39:12 +00:00
|
|
|
# The test environment is used exclusively to run your application's
|
|
|
|
# test suite. You never need to work with it otherwise. Remember that
|
|
|
|
# your test database is "scratch space" for the test suite and is wiped
|
|
|
|
# and recreated between test runs. Don't rely on the data there!
|
|
|
|
config.cache_classes = true
|
|
|
|
|
|
|
|
# Configure static asset server for tests with Cache-Control for performance
|
2016-09-21 17:22:40 +00:00
|
|
|
config.public_file_server.enabled = true
|
|
|
|
config.public_file_server.headers = {
|
|
|
|
'Cache-Control' => 'public, max-age=3600'
|
|
|
|
}
|
2012-09-23 02:39:12 +00:00
|
|
|
|
|
|
|
# Show full error reports and disable caching
|
|
|
|
config.consider_all_requests_local = true
|
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
|
|
|
|
# Raise exceptions instead of rendering exception templates
|
|
|
|
config.action_dispatch.show_exceptions = false
|
|
|
|
|
|
|
|
# Disable request forgery protection in test environment
|
2016-07-26 00:14:23 +00:00
|
|
|
config.action_controller.allow_forgery_protection = false
|
2012-09-23 02:39:12 +00:00
|
|
|
|
|
|
|
# Tell Action Mailer not to deliver emails to the real world.
|
|
|
|
# The :test delivery method accumulates sent emails in the
|
|
|
|
# ActionMailer::Base.deliveries array.
|
|
|
|
config.action_mailer.delivery_method = :test
|
2016-10-13 07:39:13 +00:00
|
|
|
config.action_mailer.default_url_options = { host: 'localhost:3000' }
|
2012-09-23 02:39:12 +00:00
|
|
|
|
|
|
|
# Print deprecation notices to the stderr
|
|
|
|
config.active_support.deprecation = :stderr
|
2015-10-25 09:09:57 +00:00
|
|
|
|
2016-07-26 00:14:23 +00:00
|
|
|
# assets config
|
2015-10-25 09:09:57 +00:00
|
|
|
config.assets.compile = true
|
|
|
|
config.assets.compress = false
|
|
|
|
config.assets.debug = false
|
|
|
|
config.assets.digest = false
|
2012-09-23 02:39:12 +00:00
|
|
|
end
|