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

attr_reader

        # Module.attr_reader

(from ruby core)
---
    attr_reader(symbol, ...)  -> array
    attr(symbol, ...)         -> array
    attr_reader(string, ...)  -> array
    attr(string, ...)         -> array

---

Creates instance variables and corresponding methods that return the
value of each instance variable. Equivalent to calling ```attr`*:name*''
on each name in turn. String arguments are converted to symbols. Returns
an array of defined method names as symbols.



      

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.