class Sprockets::Cache::FileStore

def path_for(key)

safe hex.
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