module VCR::Cassette::Persisters::FileSystem

def storage_location=(dir)

Other tags:
    Private: -
def storage_location=(dir)
  FileUtils.mkdir_p(dir) if dir
  @storage_location = dir ? absolute_path_for(dir) : nil
end