hawx / guard-sass

Guard::Sass automatically rebuilds sass files when modified (like sass --watch)
MIT License
88 stars 35 forks source link

Allow “*.css.sass” or “*.css.scss” as file extensions. #47

Closed mkempe closed 11 years ago

mkempe commented 11 years ago

Hi there,

first of all, thanks for guard-sass.

I just wrote a little importer like in “sass-rails” (https://github.com/rails/sass-rails/blob/master/lib/sass/rails/importer.rb) which overrides the “extensions” method, so you can have “.css.sass” or “.css.scss” as file extensions without having to write “@import "foo.css.scss"”.

Fixes / improves #17.

hawx commented 11 years ago

Thanks for this, I've just pushed v1.3.1 with this change to rubygems.

mkempe commented 11 years ago

Thanks!