guard / guard-compass

Guard::Compass automatically rebuilds scss|sass files when a modification occurs taking in account your compass configuration.
https://rubygems.org/gems/guard-compass
MIT License
60 stars 11 forks source link

add support for additional_import_paths and add_import_path #26

Closed rjocoleman closed 10 years ago

rjocoleman commented 10 years ago

These are available in the compass configuration file.

I've added support for using these to create additional watchers to provide parity (in this regard at least) with $ compass watch .

additional_import_paths is an array of paths (as strings) and add_import_path is a method to append a path (as a sting) to this array so they are both supported by enumerating ::Compass.configuration.additional_import_paths

rjocoleman commented 10 years ago

The tests pass except for rbx-19mode in .travis.yml which is no longer supported: http://docs.travis-ci.com/user/languages/ruby/#Rubinius

rymai commented 10 years ago

Looks good, thanks again!