vcr (version 1.2.2)

YAML: The YAML serializer

Description

class with methods for serializing via the yaml package

Arguments

Super class

vcr::Serializer -> YAML

Methods


Method new()

Create a new YAML object

Usage

YAML$new(path = NULL)

Arguments

path

(character) path to the cassette, excluding the cassette directory and the file extension

Returns

A new YAML object


Method serialize()

Serializes the given hash using internal fxn write_yaml

Usage

YAML$serialize(x, path, bytes)

Arguments

x

(list) the object to serialize

path

(character) the file path

bytes

(logical) whether to preserve exact body bytes or not

Returns

(character) the YAML string to write to disk


Method deserialize()

Deserializes the content at the path using yaml::yaml.load_file

Usage

YAML$deserialize(cassette)

Arguments

cassette

the current cassette object so it's properties can be retrieved

Returns

(list) the deserialized object, an R list


Method clone()

The objects of this class are cloneable with this method.

Usage

YAML$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.