hawx / guard-sass

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

guard -w command line flag not used when compiling sass files #21

Closed enure closed 13 years ago

enure commented 13 years ago

repro

  1. get zip: http://d.pr/yOMm
  2. run bundle exec guard -w ../
  3. run touch new.scss
  4. results in this error: http://d.pr/rX7u

If I change line 57 of runner.rb from content = IO.read(file) to content = IO.read("../#{file}") the stylesheets compile as expected.

There is another issue as well. Modifying a partial no longer triggers a compile of the stylesheets.

Thanks very much for any help with this issue. I realize it's the the most common use case.

hawx commented 13 years ago

I've just pushed the new gem to rubygems, it fixes the issues you described.