README.md in jekyll-assets-0.6.1 vs README.md in jekyll-assets-0.7.0

- old
+ new

@@ -40,11 +40,11 @@ [rails-guide]: http://guides.rubyonrails.org/asset_pipeline.html [sprockets]: https://github.com/sstephenson/sprockets#readme [extjs]: https://github.com/sstephenson/execjs#readme For a quick start check out [jekyll-assets introduction][jekyll-assets-intro] -that shows how to use it step by step. Also you might want to take a look on +that shows how to use it step by step. Also you might want to take a look on [my blog sources][ixti-blog-src] as a real-world example as well. [jekyll-assets-intro]: http://ixti.net/software/2012/12/30/unleash-mr-hyde-introduction-of-jekyll-assets.html [ixti-blog-src]: https://github.com/ixti/ixti.github.com @@ -145,11 +145,12 @@ difference is only in comments styles used with _directives_. See detailes information about these _directives_ below. You might also want your stylesheets and javascripts to be minified. In this -case just install `uglifier` gem and add following lines into your `config.yml`: +case just install the `uglifier` gem and any other gems you will be using, e.g. +`sass`, `coffee-script`. Then add following lines into your `config.yml`: ``` yaml assets: js_compressor: uglifier css_compressor: sass @@ -482,9 +483,15 @@ # Specifies list of MIME types that needs to have gzipped versions. # You can set it to `false` to disable gzipping. Only javascripts and # stylesheets are gzipped by default. # gzip: [ text/css, application/javascript ] + # + # Does not concatenates files requested by `javascript` and `stylesheet` + # helpers. Instead outputs multiple files in order they are required. + # Default: false + # + debug: false ``` ## "Th-th-th-that's all folks!"