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

File::Stat

        # File::Stat < Object

---
# Includes:
Comparable (from ruby core)

(from ruby core)
---
Objects of class File::Stat encapsulate common status information for
File objects. The information is recorded at the moment the File::Stat
object is created; changes made to the file after that point will not be
reflected. File::Stat objects are returned by IO#stat, File::stat,
File#lstat, and File::lstat. Many of these methods return
platform-specific values, and not all values are meaningful on all
systems. See also Kernel#test.
---
# Class methods:

    new

# Instance methods:

    <=>
    atime
    birthtime
    blksize
    blockdev?
    blocks
    chardev?
    ctime
    dev
    dev_major
    dev_minor
    directory?
    executable?
    executable_real?
    file?
    ftype
    gid
    grpowned?
    ino
    inspect
    mode
    mtime
    nlink
    owned?
    pipe?
    rdev
    rdev_major
    rdev_minor
    readable?
    readable_real?
    setgid?
    setuid?
    size
    size?
    socket?
    sticky?
    symlink?
    uid
    world_readable?
    world_writable?
    writable?
    writable_real?
    zero?


      

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.