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

connect_to

        # Addrinfo.connect_to

(from ruby core)
---
    addrinfo.connect_to([remote_addr_args], [opts]) {|socket| ... }
    addrinfo.connect_to([remote_addr_args], [opts])

---

creates a socket connected to *remote_addr_args* and bound to self.

The optional last argument *opts* is options represented by a hash.
*opts* may have following options:

:timeout
:   specify the timeout in seconds.


If a block is given, it is called with the socket and the value of the
block is returned. The socket is returned otherwise.

    Addrinfo.tcp("0.0.0.0", 4649).connect_to("www.ruby-lang.org", 80) {|s|
      s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
      puts s.read
    }



      

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.