module Bundler::URI

def self.split(uri)


# => ["http", nil, "www.ruby-lang.org", nil, nil, "/", nil, nil, nil]
Bundler::URI.split("http://www.ruby-lang.org/")

require 'bundler/vendor/uri/lib/uri'

== Usage

* Fragment
* Query
* Opaque
* Path
* Registry
* Port
* Host
* Userinfo
* Scheme

Splits the string on following parts and returns array with result:

== Description

String with Bundler::URI.
+uri+::

== Args

Bundler::URI::split(uri)

== Synopsis
def self.split(uri)
  RFC3986_PARSER.split(uri)
end