diff options
author | sowjanya <sowju19@gmail.com> | 2014-01-28 16:53:30 -0800 |
---|---|---|
committer | sowjanya <sowju19@gmail.com> | 2014-01-28 16:53:30 -0800 |
commit | fe8ffcacd6abd8d4af6db113275af0257c15bdc2 (patch) | |
tree | 24f0c2ffd86f6f6f54a0a0cd362e59e0f6aa7d5a /guides/source | |
parent | b9cd5a29dd4c6142b19c861fbf1a67452320b3dd (diff) | |
download | rails-fe8ffcacd6abd8d4af6db113275af0257c15bdc2.tar.gz rails-fe8ffcacd6abd8d4af6db113275af0257c15bdc2.tar.bz2 rails-fe8ffcacd6abd8d4af6db113275af0257c15bdc2.zip |
Added documentation for css_compressor
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/asset_pipeline.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index bce5d6c55f..40e0770177 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -938,7 +938,7 @@ Customizing the Pipeline ### CSS Compression -There is currently one option for compressing CSS, YUI. The [YUI CSS +One of the options for compressing CSS is YUI. The [YUI CSS compressor](http://yui.github.io/yuicompressor/css.html) provides minification. @@ -948,6 +948,11 @@ gem. ```ruby config.assets.css_compressor = :yui ``` +The other option for compressing CSS if you have the sass-rails gem installed is + +```ruby +config.assets.css_compressor = :sass +``` ### JavaScript Compression |