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

gmtime

        # Time.gmtime

(from ruby core)
---
    time.gmtime    -> time
    time.utc       -> time

---

Converts *time* to UTC (GMT), modifying the receiver.

    t = Time.now   #=> 2007-11-19 08:18:31 -0600
    t.gmt?         #=> false
    t.gmtime       #=> 2007-11-19 14:18:31 UTC
    t.gmt?         #=> true

    t = Time.now   #=> 2007-11-19 08:18:51 -0600
    t.utc?         #=> false
    t.utc          #=> 2007-11-19 14:18:51 UTC
    t.utc?         #=> true



      

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.