Type:
Class
Constants:
OPTIONS
:
DumperOptions.new
Default dumping options
EVENTS
:
[ :alias,
:empty,
:end_document,
:end_mapping,
:end_sequence,
:end_stream,
:scalar,
:start_document,
:start_mapping,
:start_sequence,
:start_stream ]
Events that a Handler should respond to.
Psych::Handler is an abstract base class that defines the events used when dealing with Psych::Parser. Clients who want to use Psych::Parser should implement a class that inherits from Psych::Handler and define events that they can handle.
Psych::Handler defines all events that Psych::Parser can possibly send to event handlers.
See Psych::Parser for more details
start_stream
start_stream(encoding) Instance Public methods Called with encoding
2015-04-29 05:15:19
end_stream
end_stream() Instance Public methods Called when the YAML stream ends
2015-04-29 04:52:31