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

zone

        # Time.zone

(from ruby core)
---
    time.zone -> string or timezone

---

Returns the name of the time zone used for *time*. As of Ruby 1.8,
returns ``UTC'' rather than ``GMT'' for UTC times.

    t = Time.gm(2000, "jan", 1, 20, 15, 1)
    t.zone   #=> "UTC"
    t = Time.local(2000, "jan", 1, 20, 15, 1)
    t.zone   #=> "CST"



      

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.