# File lib/merb-cache/stores/fundamental/file_store.rb, line 60 def delete(key, parameters = {}) if File.file?(path = pathify(key, parameters)) FileUtils.rm(path) end end