module Bundler::URI
def self.join(*str)
# => #
Bundler::URI.join('http://example.com', '/foo/', 'bar')
# => #
Bundler::URI.join('http://example.com', '/foo', 'bar')
# => #
Bundler::URI.join('http://example.com', '/foo', '/bar')
# => #
Bundler::URI.join('http://example.com', 'foo')
# => #
Bundler::URI.join("http://example.com/","main.rbx")
require 'bundler/vendor/uri/lib/uri'
== Usage
Joins URIs.
== Description
String(s) to work with, will be converted to RFC3986 URIs before merging.
+str+::
== Args
Bundler::URI::join(str[, str, ...])
== Synopsis
def self.join(*str) RFC3986_PARSER.join(*str) end