module VCR::Cassette::Persisters::FileSystem

def [](file_name)

Returns:
  • (String) - the cassette content

Parameters:
  • file_name (String) -- the file name
def [](file_name)
  path = absolute_path_to_file(file_name)
  return nil unless File.exist?(path)
  File.binread(path)
end