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

day

        # Time.day

(from ruby core)
---
    day()

---

Returns the day of the month (1..31) for *time*.

    t = Time.now   #=> 2007-11-19 08:27:03 -0600
    t.day          #=> 19
    t.mday         #=> 19


(This method is an alias for Time#mday.)

Returns the day of the month (1..31) for *time*.

    t = Time.now   #=> 2007-11-19 08:27:03 -0600
    t.day          #=> 19
    t.mday         #=> 19



      

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.