Flowdock
method

join

Importance_0
v1_9_2_180 - Show latest stable - 0 notes - Class: Parser
join(*str) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/uri/common.rb, line 187
    def join(*str)
      u = self.parse(str[0])
      str[1 .. -1].each do |x|
        u = u.merge(x)
      end
      u
    end
Register or log in to add new notes.