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

mode

        # File::Stat.mode

(from ruby core)
### Implementation from Stat
---
    stat.mode   -> integer

---

Returns an integer representing the permission bits of *stat*. The
meaning of the bits is platform dependent; on Unix systems, see
`stat(2)`.

    File.chmod(0644, "testfile")   #=> 1
    s = File.stat("testfile")
    sprintf("%o", s.mode)          #=> "100644"



      

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.