gems.bourbon-5.0.0.features.support.bourbon_support.rb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
module BourbonSupport
def install_bourbon(path = nil)
if path
run_simple("bundle exec bourbon install --path '#{path}'")
else
run_simple("bundle exec bourbon install")
end
end
def bourbon_path(prefix, path)
if prefix
File.join(prefix, 'bourbon', path)
else
File.join('bourbon', path)
end
end
end
World(BourbonSupport)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy