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

send

        # BasicSocket.send

(from ruby core)
---
    basicsocket.send(mesg, flags [, dest_sockaddr]) => numbytes_sent

---

send *mesg* via *basicsocket*.

*mesg* should be a string.

*flags* should be a bitwise OR of Socket::MSG_* constants.

*dest_sockaddr* should be a packed sockaddr string or an addrinfo.

    TCPSocket.open("localhost", 80) {|s|
      s.send "GET / HTTP/1.0\r\n\r\n", 0
      p 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.