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

stat

        # IO.stat

(from ruby core)
---
    ios.stat    -> stat

---

Returns status information for *ios* as an object of type File::Stat.

    f = File.new("testfile")
    s = f.stat
    "%o" % s.mode   #=> "100644"
    s.blksize       #=> 4096
    s.atime         #=> Wed Apr 09 08:53:54 CDT 2003



      

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.