class Sprockets::SassTemplate::CacheStore
Internal: Cache wrapper for Sprockets cache adapter.
def _retrieve(key, version, sha)
def _retrieve(key, version, sha) @cache._get("#{@version}/#{version}/#{key}/#{sha}") end
def _store(key, version, sha, contents)
def _store(key, version, sha, contents) @cache._set("#{@version}/#{version}/#{key}/#{sha}", contents) end
def initialize(cache, version)
def initialize(cache, version) @cache, @version = cache, "#{VERSION}/#{version}" end
def path_to(key)
def path_to(key) key end