class Sprockets::Cache::FileStore
def path_for(key)
The key may include some funky characters so hash it into
Returns path for cache key.
def path_for(key) @root.join(::Digest::MD5.hexdigest(key)) end
def path_for(key) @root.join(::Digest::MD5.hexdigest(key)) end