This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

Psych::Handler

        # Psych::Handler < Object

(from ruby core)
---
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

---
# Constants:

EVENTS
:   Events that a Handler should respond to.
OPTIONS
:   Default dumping options


# Instance methods:

    alias
    empty
    end_document
    end_mapping
    end_sequence
    end_stream
    event_location
    scalar
    start_document
    start_mapping
    start_sequence
    start_stream
    streaming?


      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.