class Gem::URI::RFC2396_Parser

def parse(uri)


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

== Usage

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

== Description

String
+uri+::

== Args
def parse(uri)
  Gem::URI.for(*self.split(uri), self)
end