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

IOError

        # IOError < StandardError

(from ruby core)
---
Raised when an IO operation fails.

    File.open("/etc/hosts") {|f| f << "example"}
      #=> IOError: not opened for writing

    File.open("/etc/hosts") {|f| f.close; f.read }
      #=> IOError: closed stream

Note that some IO failures raise `SystemCallError`s and these are not
subclasses of IOError:

    File.open("does/not/exist")
      #=> Errno::ENOENT: No such file or directory - does/not/exist
---

      

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.