ruby - guard/guard-sass not compiling changes -
i'm having problems guard
, guard-sass
compiling updated .sass files. i've install them both, pointed guard-sass configuration @ input , output directories whenever save changes .css file isn't getting updated.
initially thought might permissions things odd thing i've set :all_on_start => true
words doubt can that.
here guardfile stands:
guard 'sass', :input => 'assets/sass', :output => 'static/css', :all_on_start => true
i've tried (just incase avoiding long notation made difference):
guard 'sass', :all_on_start => true, :output => 'static/css' watch %r{^assets/sass/(.+\.s[ac]ss)$} end
here when start guard debug (guard start -d
- incase debug show i'm missing):
tavocado:data tavocado$ guard start -d 22:39:49 - debug - command execution: emacsclient --eval '1' 2> /dev/null || echo 'n/a' 22:39:49 - info - guard uses terminaltitle send notifications. 22:39:49 - debug - command execution: hash stty 22:39:49 - debug - guard starts plugins 22:39:49 - debug - hook :start_begin executed guard::sass 22:39:49 - info - sass [0.02s] base.sass -> base.css 22:39:49 - debug - hook :start_end executed guard::sass 22:39:49 - info - guard watching @ '/data' 22:39:50 - debug - command execution: stty -g 2>/dev/null 22:39:50 - debug - start interactor
i'm installing on os x 10.8.3 default ruby installation (ruby 1.8.7, gem 1.3.6).
i've been @ couple of hours , i'm stumped appreciated.
taken guard wiki:
if on mac os x , have problems either guard not reacting file changes or pry behaving strangely, suffer under ruby build uses libedit instead of readline.
to fix issue, need install proper readline support. since ruby 1.8.7 end-of-life in june , not receive security updates, recommend upgrade ruby 2.0.0.
Comments
Post a Comment