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

ip_address

        # Addrinfo.ip_address

(from ruby core)
---
    addrinfo.ip_address => string

---

Returns the IP address as a string.

    Addrinfo.tcp("127.0.0.1", 80).ip_address    #=> "127.0.0.1"
    Addrinfo.tcp("::1", 80).ip_address          #=> "::1"



      

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.