class Sprockets::SassCompressor

def initialize(options = {})

def initialize(options = {})
  @options = {
    syntax: :scss,
    cache: false,
    read_cache: false,
    style: :compressed
  }.merge(options).freeze
  @cache_key = "#{self.class.name}:#{Autoload::Sass::VERSION}:#{VERSION}:#{DigestUtils.digest(options)}".freeze
end