class BourbonIntegrator::Command::Watch

Public Instance Methods

run() click to toggle source
# File lib/bourbon_integrator/command/watch.rb, line 25
def run
  @output.puts "*** Watching for changes ***"
  @executor.exec(
    "sass -r sass-globbing --scss --style #{sass_style} #{sourcemap}"\
    " --watch #{sass_path}:#{stylesheets_path}"
  )
end