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

getopts

        # OptionParser.getopts

(from ruby core)
---
    getopts(*args)

---

See #getopts.


(from ruby core)
---
    getopts(*args)

---

Wrapper method for getopts.rb.

    params = ARGV.getopts("ab:", "foo", "bar:", "zot:Z;zot option")
    # params["a"] = true   # -a
    # params["b"] = "1"    # -b1
    # params["foo"] = "1"  # --foo
    # params["bar"] = "x"  # --bar x
    # params["zot"] = "z"  # --zot Z



      

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.