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

Ractor::MovedObject

        # Ractor::MovedObject < BasicObject

(from ruby core)
---
A special object which replaces any value that was moved to another
ractor in Ractor#send or Ractor.yield. Any attempt to access the object
results in Ractor::MovedError.

    r = Ractor.new { receive }

    ary = [1, 2, 3]
    r.send(ary, move: true)
    p Ractor::MovedObject === ary
    # => true
    ary.inspect
    # Ractor::MovedError (can not send any methods to a moved object)
---
# Instance methods:

    !
    !=
    ==
    __id__
    __send__
    equal?
    instance_eval
    instance_exec
    method_missing


      

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.