module RestfulClientUri

Public Instance Methods

uri_join(url, path) click to toggle source

This is totally wierd, but File.join just does what you need while URI.join as much too strict.

# File lib/restful_client_uri.rb, line 7
def uri_join(url, path)
  File.join(url, path).to_s
end