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

to_rfc822text

        # URI::MailTo.to_rfc822text

(from ruby core)
### Implementation from MailTo
---
    to_rfc822text()

---

(This method is an alias for URI::MailTo#to_mailtext.)

Returns the RFC822 e-mail text equivalent of the URL, as a String.

Example:

    require 'uri'

    uri = URI.parse("mailto:ruby-list@ruby-lang.org?Subject=subscribe&cc=myaddr")
    uri.to_mailtext
    # => "To: ruby-list@ruby-lang.org\nSubject: subscribe\nCc: myaddr\n\n\n"



      

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.