Module: RestAPIBuilder::UrlHelper
- Included in:
- RequestOptions, WebMockRequestExpectationsSingleton
- Defined in:
- lib/rest_api_builder/url_helper.rb
Instance Method Summary collapse
Instance Method Details
#full_url(url, path) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/rest_api_builder/url_helper.rb', line 3 def full_url(url, path) if path File.join(url, path) else url end end |