Hi Mehmet, I don't know susy, but I think the best is to ask directly on the guard-sass/compass github issues.
On May 8, 2013, at 01:52 , Mehmet Arin <
offm...@gmail.com> wrote:
> Hi,
>
> I am trying to use guard with susy. As my Gemfile I am using:
>
> gem "susy"
> gem "guard"
> gem "guard-sass"
> gem "guard-compass"
> gem "guard-livereload"
>
> -----------------
>
> as for config:
>
> require "susy"
> require "compass"
> require "guard-livereload"
> require "guard-compass"
> require "guard-sass"
>
> http_path = "/"
> css_dir = "stylesheets"
> sass_dir = "sass"
> images_dir = "images"
> javascripts_dir = "javascripts"
>
> relative_assets = true
> activate :livereload
>
> -----------------------
>
> and as for Guardfile:
>
> guard 'livereload' do
> watch(%r{.+\.(css|js|html)})
> end
>
> guard 'sass', :input => 'sass', :output => 'stylesheets'
>
> I am using the dependencies above. Guard runs without errors with "bundle exec guard". When I compile a .scss file guard it gives following error:
>
> ERROR - [Sass] Sass > Syntax error: File to import not found or unreadable: susy.
> > [#] Load paths:
> > [#] /var/www/foo/public/stylesheets/sass
> > [#] /var/www/foo/sass
> > [#] on line 4 of sass/_base.scss
> > [#] from line 4 of sass/screen.scss
>
>
> As far as I can see guard is not compiling relative assets like compass does. It is also same with other library relative assets(zurb-foundation etc). Is there a way to add these external library assets to guard compiler? Thanks.
>
>
>
>
>
> --
> You received this message because you are subscribed to the Google Groups "guard-dev" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
guard-dev+...@googlegroups.com.
> For more options, visit
https://groups.google.com/groups/opt_out.
>
>