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

each_child

        # Dir.each_child

(from ruby core)
---
    Dir.each_child( dirname ) {| filename | block }                 -> nil
    Dir.each_child( dirname, encoding: enc ) {| filename | block }  -> nil
    Dir.each_child( dirname )                                       -> an_enumerator
    Dir.each_child( dirname, encoding: enc )                        -> an_enumerator

---

Calls the block once for each entry except for "." and ".." in the named
directory, passing the filename of each entry as a parameter to the
block.

If no block is given, an enumerator is returned instead.

    Dir.each_child("testdir") {|x| puts "Got #{x}" }

*produces:*

    Got config.h
    Got main.rb


(from ruby core)
---
    dir.each_child {| filename | block }  -> dir
    dir.each_child                        -> an_enumerator

---

Calls the block once for each entry except for "." and ".." in this
directory, passing the filename of each entry as a parameter to the
block.

If no block is given, an enumerator is returned instead.

    d = Dir.new("testdir")
    d.each_child  {|x| puts "Got #{x}" }

*produces:*

    Got config.h
    Got main.rb



      

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.