Sync boilerplate with Rails 4.1.4

This commit is contained in:
Dan Rice 2014-07-07 21:25:24 -04:00
parent 4125faf109
commit 9125355313
14 changed files with 186 additions and 74 deletions

View file

@ -9,14 +9,14 @@ Rails.application.configure do
# Do not eager load code on boot.
config.eager_load = false
# Show full error reports and disable caching
# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Don't care if the mailer can't send
# Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
# Print deprecation notices to the Rails logger
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
# Debug mode disables concatenation and preprocessing of assets.
@ -35,4 +35,6 @@ Rails.application.configure do
config.rack_dev_mark.enable = true
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
end