class Sprockets::SassProcessor

def build_cache_store(input, version)

Sprockets cache.
Override this method if you need to use a different cache than the

version - the cache version.
input - the input hash.

Public: Build the cache store to be used by the Sass engine.
def build_cache_store(input, version)
  CacheStore.new(input[:cache], version)
end