1 Rails.application.configure do
2 # Settings specified here will take precedence over those in config/application.rb.
4 # In the development environment your application's code is reloaded on
5 # every request. This slows down response time but is perfect for development
6 # since you don't have to restart the web server when you make code changes.
7 config.cache_classes = false
9 # Do not eager load code on boot.
10 config.eager_load = false
12 # Show full error reports.
13 config.consider_all_requests_local = true
15 # Don't care if the mailer can't send.
16 config.action_mailer.raise_delivery_errors = false
18 config.action_mailer.perform_caching = false
20 # Print deprecation notices to the Rails logger.
21 config.active_support.deprecation = :log
23 # Raise an error on page load if there are pending migrations.
24 unless STATUS == :database_offline
25 config.active_record.migration_error = :page_load
28 # Debug mode disables concatenation and preprocessing of assets.
29 # This option may cause significant delays in view rendering with a large
30 # number of complex assets.
31 config.assets.debug = true
33 # Suppress logger output for asset requests.
34 config.assets.quiet = true
36 # Raises error for missing translations
37 # config.action_view.raise_on_missing_translations = true
39 # Use an evented file watcher to asynchronously detect changes in source code,
40 # routes, locales, etc. This feature depends on the listen gem.
41 config.file_watcher = ActiveSupport::EventedFileUpdateChecker