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

subclasses

        # Class.subclasses

(from ruby core)
---
    subclasses -> array

---

Returns an array of classes where the receiver is the direct superclass
of the class, excluding singleton classes. The order of the returned
array is not defined.

    class A; end
    class B < A; end
    class C < B; end
    class D < A; end

    A.subclasses        #=> [D, B]
    B.subclasses        #=> [C]
    C.subclasses        #=> []



      

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.