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

ctime

        # File::Stat.ctime

(from ruby core)
### Implementation from Stat
---
    stat.ctime  ->  aTime

---

Returns the change time for *stat* (that is, the time directory
information about the file was changed, not the file itself).

Note that on Windows (NTFS), returns creation time (birth time).

    File.stat("testfile").ctime   #=> 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.