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

world_readable?

        # File::Stat.world_readable?

(from ruby core)
### Implementation from Stat
---
    stat.world_readable? -> integer or nil

---

If *stat* is readable by others, returns an integer representing the
file permission bits of *stat*. Returns `nil` otherwise. The meaning of
the bits is platform dependent; on Unix systems, see `stat(2)`.

    m = File.stat("/etc/passwd").world_readable?  #=> 420
    sprintf("%o", m)                              #=> "644"



      

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.