diff options
author | José Valim <jose.valim@gmail.com> | 2011-07-06 21:38:54 -0300 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-07-06 21:41:13 -0300 |
commit | 2f6e3895a8ea2a39e43525aba91a6dbca977ef6a (patch) | |
tree | 6ff56dde61784acf20356e2336331ef82578530f /Gemfile | |
parent | 86390c3bf30dd61f3bac047e0887b74ff422c02f (diff) | |
download | rails-2f6e3895a8ea2a39e43525aba91a6dbca977ef6a.tar.gz rails-2f6e3895a8ea2a39e43525aba91a6dbca977ef6a.tar.bz2 rails-2f6e3895a8ea2a39e43525aba91a6dbca977ef6a.zip |
Make compressors lazily load.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -10,7 +10,10 @@ end gem "coffee-script" gem "sass" -gem "uglifier", ">= 1.0.0" + +# This needs to be with require false to avoid +# it being automatically loaded by sprockets +gem "uglifier", ">= 1.0.0", :require => false gem "rake", ">= 0.8.7" gem "mocha", ">= 0.9.8" |