class Sprockets::Cache::FileStore

def safe_open(path, &block)

def safe_open(path, &block)
  if File.exist?(path)
    File.open(path, 'rb', &block)
  end
rescue Errno::ENOENT
end