class Sass::CacheStores::Filesystem

def path_to(key)

Returns:
  • (String) - The path to the cache file.

Parameters:
  • key (String) --
def path_to(key)
  key = key.gsub(/[<>:\\|?*%]/) {|c| "%%%03d" % Sass::Util.ord(c)}
  File.join(cache_location, key)
end