class EzPaaS::HTTP::HTTPClient
Attributes
url[R]
Public Class Methods
new(url)
click to toggle source
# File lib/ezpaas/http/http_client.rb, line 12 def initialize(url) @url = url end
Protected Instance Methods
url_for(path)
click to toggle source
# File lib/ezpaas/http/http_client.rb, line 18 def url_for(path) URI::join(url, path).to_s end