class BourbonIntegrator::Command::Compile

Public Instance Methods

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