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

rdev_minor

        # File::Stat.rdev_minor

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

---

Returns the minor part of `File_Stat#rdev` or `nil`.

    File.stat("/dev/fd1").rdev_minor   #=> 1
    File.stat("/dev/tty").rdev_minor   #=> 0



      

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.