summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Legler <alex@a3li.li>2015-12-30 18:56:17 +0100
committerAlex Legler <alex@a3li.li>2015-12-30 18:56:17 +0100
commit4e081ac5d6024b80cb85f73eaf018029d1a47119 (patch)
treeca3858bc67ce3648d08adc01a1d14f4a991f6b98 /config/environments/development.rb
parentAdd functionality to add CVEs to CVETool (diff)
downloadglsamaker-4e081ac5d6024b80cb85f73eaf018029d1a47119.tar.gz
glsamaker-4e081ac5d6024b80cb85f73eaf018029d1a47119.tar.bz2
glsamaker-4e081ac5d6024b80cb85f73eaf018029d1a47119.zip
Update to rails-4.2; first bits of code cleanup
Diffstat (limited to 'config/environments/development.rb')
-rw-r--r--config/environments/development.rb16
1 files changed, 14 insertions, 2 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb
index e344a71..b55e214 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -1,4 +1,4 @@
-Glsamaker::Application.configure do
+Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded on
@@ -19,11 +19,23 @@ Glsamaker::Application.configure do
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
- # Raise an error on page load if there are pending migrations
+ # Raise an error on page load if there are pending migrations.
config.active_record.migration_error = :page_load
# Debug mode disables concatenation and preprocessing of assets.
# This option may cause significant delays in view rendering with a large
# number of complex assets.
config.assets.debug = true
+
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
+ # yet still be able to expire them through the digest params.
+ config.assets.digest = true
+
+ # Adds additional error checking when serving assets at runtime.
+ # Checks for improperly declared sprockets dependencies.
+ # Raises helpful error messages.
+ config.assets.raise_runtime_errors = true
+
+ # Raises error for missing translations
+ # config.action_view.raise_on_missing_translations = true
end