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

mtime

        # File.mtime

(from ruby core)
---
    File.mtime(file_name)  ->  time

---

Returns the modification time for the named file as a Time object.

*file_name* can be an IO object.

    File.mtime("testfile")   #=> Tue Apr 08 12:58:04 CDT 2003


(from ruby core)
---
    file.mtime  ->  time

---

Returns the modification time for *file*.

    File.new("testfile").mtime   #=> Wed Apr 09 08:53:14 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.