Use libsass
with Ruby!
This gem combines the speed of libsass
, the Sass C implementation, with the easy of use of the original Ruby Sass library.
This library utilizes libsass
to allow you to compile SCSS or SASS syntax
to CSS. To compile, use a SassC::Engine
.
Note: If you want to use this library with Rails/Sprockets, check out sassc-rails.
Additionally, you can use SassC::Sass2Scss
to convert Sass syntax to Scss syntax.
- Clone repo
- Install dependencies -
bundle install
- Initialize the libsass submodule -
bundle exec rake submodule
- Run the tests -
bundle exec rake test
- Fork it ( https://github.com/[my-github-username]/sassc/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - try to include tests - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request