Wraps sass' css compressor to use the same API as the rest of Jammit's compressors.
Creates a new sass compressor. Jammit::SassCompressor doesn't use any options, the options parameter is there for API compatibility.
# File lib/jammit/sass_compressor.rb, line 7 def initialize(options = {}) end
Compresses css using sass' CSS parser, and returns the compressed css.
# File lib/jammit/sass_compressor.rb, line 12 def compress(css) root_node = ::Sass::SCSS::CssParser.new(css, 'jammit-combined-input').parse root_node.options = {:style => :compressed} root_node.render.strip end
Generated with the Darkfish Rdoc Generator 2.