Class VCR::Cassette::Persisters
In: lib/vcr/cassette/persisters.rb
lib/vcr/cassette/persisters/file_system.rb
Parent: Object

Keeps track of the cassette persisters in a hash-like object.

Methods

[]   []=   new  

Classes and Modules

Module VCR::Cassette::Persisters::FileSystem

Public Class methods

@private

Public Instance methods

Gets the named persister.

@param name [Symbol] the name of the persister @return the named persister @raise [ArgumentError] if there is not a persister for the given name

Registers a persister.

@param name [Symbol] the name of the persister @param value [#[], #[]=] the persister object. It must implement `[]` and `[]=`.

[Validate]