summaryrefslogtreecommitdiff
path: root/config/application.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-06-23 22:12:54 -0700
committerelijah <elijah@riseup.net>2013-07-04 04:04:54 -0700
commit38544a07de7988eee91343c1491dae1e08ce5034 (patch)
tree4bbf938cffffd552d3c2f55950080dbb921a97c7 /config/application.rb
parent2e4ebdb84a464cf2ee902eb6e9bc955d77bafa73 (diff)
added 'thin' and 'quiet_assets' gems to make development mode much nicer.
Diffstat (limited to 'config/application.rb')
-rw-r--r--config/application.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/config/application.rb b/config/application.rb
index 957bb0d..5e52c7b 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -59,11 +59,18 @@ module LeapWeb
# parameters by using an attr_accessible or attr_protected declaration.
# config.active_record.whitelist_attributes = true
+ ##
+ ## ASSETS
+ ##
+
# Enable the asset pipeline
config.assets.enabled = true
config.assets.initialize_on_precompile = false
# Version of your assets, change this if you want to expire all your assets
config.assets.version = '1.0'
+
+ # Set to false in order to see asset requests in the log
+ config.quiet_assets = true
end
end