summaryrefslogtreecommitdiff
path: root/lib/uri
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-23 12:22:43 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-23 12:22:43 +0000
commitd339fed3ad9b6002712a3da09f2a7cdc604b694b (patch)
tree12d3da8f3392a4298762fa91a89be7ba8ac6f749 /lib/uri
parent060f18c0d930f8f65749f427b6f901bd2c575397 (diff)
Add document about URI.join. [ruby-core:32462]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29322 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/uri')
-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