Module: RestAPIBuilder::Helpers::UrlHelper

Included in:
Request::RequestOptions, WebMockRequestExpectations::Expectations
Defined in:
lib/rest_api_builder/helpers/url_helper.rb

Class Method Summary collapse

Class Method Details

.full_url(url, path) ⇒ Object



6
7
8
9
10
11
12
# File 'lib/rest_api_builder/helpers/url_helper.rb', line 6

def full_url(url, path)
  if path
    File.join(url, path)
  else
    url
  end
end