I want to compress css files and javascript files in my project. Is there any plugin to do that? :">
Another option is [asset_packager](http://github.com/sbecker/asset_packager). I used this over Jammit. Easy to set up, define assets in a yml file, couple of Raks tasks to do the work.
Andy Atkinson
2010-08-17 04:32:27
+2
A:
I used bundle-fu, worked great.
- compresses both css and javascript
- has no external dependencies
- is around for a long time (proven)
- is simpler to use than Jammit (no config file).
- more
Jammit is newer and fancyer.
- it has better compression as it can use the latest compressor from google Closure Compiler considered having the best compression
- is harder to use than bundle-fu (makes you define a config file)
- has external dependencies (the java runtime to run the closure or yui compressors, written in java).
clyfe
2010-08-13 09:23:35