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

blksize

        # File::Stat.blksize

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

---

Returns the native file system's block size. Will return `nil` on
platforms that don't support this information.

    File.stat("testfile").blksize   #=> 4096



      

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.