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

glob

        # Pathname.glob

(from ruby core)
---
    glob(p1, p2 = v2, p3 = v3)

---

Returns or yields Pathname objects.

    Pathname.glob("lib/i*.rb")
        #=> [#<Pathname:lib/ipaddr.rb>, #<Pathname:lib/irb.rb>]

See Dir.glob.


(from ruby core)
---
    glob(p1, p2 = v2)

---

Returns or yields Pathname objects.

    Pathname("ruby-2.4.2").glob("R*.md")
    #=> [#<Pathname:ruby-2.4.2/README.md>, #<Pathname:ruby-2.4.2/README.ja.md>]

See Dir.glob. This method uses the `base` keyword argument of Dir.glob.



      

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.