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

parse

        # URI::RFC2396_Parser.parse

(from ruby core)
### Implementation from RFC2396_Parser
---
    parse(uri)

---

## Args

`uri`
:   String


## Description

Parses `uri` and constructs either matching URI scheme object (File,
FTP, HTTP, HTTPS, LDAP, LDAPS, or MailTo) or URI::Generic.

## Usage

    p = URI::Parser.new
    p.parse("ldap://ldap.example.com/dc=example?user=john")
    #=> #<URI::LDAP ldap://ldap.example.com/dc=example?user=john>



      

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.