aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/uri/common.rb15
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/uri/common.rb b/lib/uri/common.rb
index 1240e6749c..3f92423b1a 100644
--- a/lib/uri/common.rb
+++ b/lib/uri/common.rb
@@ -643,9 +643,22 @@ module URI
#
# require 'uri'
#
- # p URI.join("http://localhost/","main.rbx")
+ # p URI.join("http://example.com/","main.rbx")
# # => #<URI::HTTP:0x2022ac02 URL:http://localhost/main.rbx>
#
+ # p URI.join('http://example.com', 'foo')
+ # # => #<URI::HTTP:0x01ab80a0 URL:http://example.com/foo>
+ #
+ # p URI.join('http://example.com', '/foo', '/bar')
+ # # => #<URI::HTTP:0x01aaf0b0 URL:http://example.com/bar>
+ #
+ # p URI.join('http://example.com', '/foo', 'bar')
+ # # => #<URI::HTTP:0x801a92af0 URL:http://example.com/bar>
+ #
+ # p URI.join('http://example.com', '/foo/', 'bar')
+ # # => #<URI::HTTP:0x80135a3a0 URL:http://example.com/foo/bar>
+ #
+ #
def self.join(*str)
DEFAULT_PARSER.join(*str)
end