summaryrefslogtreecommitdiff
path: root/lib/uri/common.rb
diff options
context:
space:
mode:
authorakira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-07 04:51:11 +0000
committerakira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-07 04:51:11 +0000
commit91a3db0afc159e855312c4cd5c79fe925c65fd10 (patch)
treeded8203e542682aa90764b183c16fd7401e17be7 /lib/uri/common.rb
parent90991d9889a7b95d85c13bdea3eb246d27e466ac (diff)
uri-0.9.5
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/uri/common.rb')
-rw-r--r--lib/uri/common.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/uri/common.rb b/lib/uri/common.rb
index ed2f6a7a5b..6f2fa81ad2 100644
--- a/lib/uri/common.rb
+++ b/lib/uri/common.rb
@@ -378,6 +378,19 @@ module URI
=begin
+--- URI::join(str[, str, ...])
+
+=end
+ def self.join(*str)
+ u = self.parse(str[0])
+ str[1 .. -1].each do |x|
+ u = u.merge(x)
+ end
+ u
+ end
+
+=begin
+
--- URI::extract(str[, schemes])
=end