diff options
author | elijah <elijah@riseup.net> | 2013-06-23 22:12:54 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-06-23 22:12:54 -0700 |
commit | 9f8549fd485ee3dc9e63850a2af2a8859fdb70cc (patch) | |
tree | 69d35e22893f3f18df372c0c146952b25cc27ebb | |
parent | fb7187561d7143da458c102353ee9e0090d71532 (diff) |
added 'thin' and 'quiet_assets' gems to make development mode much nicer.
-rw-r--r-- | common_dependencies.rb | 2 | ||||
-rw-r--r-- | config/application.rb | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/common_dependencies.rb b/common_dependencies.rb index 1650fee..63c3710 100644 --- a/common_dependencies.rb +++ b/common_dependencies.rb @@ -7,5 +7,7 @@ end group :test, :development do gem 'faker' gem 'factory_girl_rails' + gem 'thin' + gem 'quiet_assets' end 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 |