aboutsummaryrefslogtreecommitdiffstats
path: root/config/environments/development.rb
diff options
context:
space:
mode:
authorMark Longair <mhl@pobox.com>2013-09-30 09:01:50 +0100
committerMark Longair <mhl@pobox.com>2013-11-19 17:29:14 +0000
commit6db2be1e3b28ab747add47415a1071beb9ff8842 (patch)
tree1da0727afe966467c9645fec87c86ad81aa4adb0 /config/environments/development.rb
parentb28f47a03417687a9cc813660a4b10813ed69c6a (diff)
Enable the Rails asset pipeline (Sprockets)
Diffstat (limited to 'config/environments/development.rb')
-rw-r--r--config/environments/development.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb
index a912dd5de..ecfad3af7 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -32,4 +32,11 @@ Alaveteli::Application.configure do
# Print deprecation notices to the Rails logger
config.active_support.deprecation = :log
+
+ # Do not compress assets
+ config.assets.compress = false
+
+ # Expands the lines which load the assets
+ config.assets.debug = true
+
end