Module VCR::Cassette::Serializers::Syck
In: lib/vcr/cassette/serializers/syck.rb

The Syck serializer. Syck is the legacy YAML engine in ruby 1.8 and 1.9.

@see JSON @see Psych @see YAML

Methods

Constants

ENCODING_ERRORS = [ArgumentError]   @private

Public Instance methods

Deserializes the given string using Syck.

@param [String] string the YAML string @return [Hash] the deserialized object

The file extension to use for this serializer.

@return [String] "yml"

Serializes the given hash using Syck.

@param [Hash] hash the object to serialize @return [String] the YAML string

[Validate]