README.md in hanami-assets-1.3.1 vs README.md in hanami-assets-1.3.2
- old
+ new
@@ -13,11 +13,11 @@
## Contact
* Home page: http://hanamirb.org
* Community: http://hanamirb.org/community
-* Guides: http://hanamirb.org/guides
+* Guides: https://guides.hanamirb.org
* Mailing List: http://hanamirb.org/mailing-list
* API Doc: http://rdoc.info/gems/hanami-assets
* Bugs/Issues: https://github.com/hanami/assets/issues
* Support: http://stackoverflow.com/questions/tagged/hanami
* Forum: https://discuss.hanamirb.org
@@ -198,11 +198,11 @@
The first one is mandatory and it's used to understand which asset type we are
handling: `.css` for stylesheets.
The second one is optional and it's for a preprocessor: `.scss` for Sass.
```ruby
-require 'sass'
+require 'sassc'
require 'hanami/assets'
Hanami::Assets.configure do
compile true
@@ -351,10 +351,10 @@
Hanami can use the following compressors (aka minifiers) for stylesheets.
* `:builtin` - Ruby based compressor. It doesn't require any external gem. It's fast, but not an efficient compressor.
* `:yui` - [YUI Compressor](http://yui.github.io/yuicompressor), it depends on [`yui-compressor`](https://rubygems.org/gems/yui-compressor) gem and it requires Java 1.4+
- * `:sass` - [Sass](http://sass-lang.com/), it depends on [`sass`](https://rubygems.org/gems/sass) gem
+ * `:sass` - [Sass](http://sass-lang.com/), it depends on [`sassc`](https://rubygems.org/gems/sassc) gem
```ruby
Hanami::Assets.configure do
stylesheet_compressor :sass
end