Method: CircuitClient::Client#build_uri
- Defined in:
- lib/circuit_client/client.rb
#build_uri(path) ⇒ Object
Returns an URI with the base_uri and the supplied path
110 111 112 113 114 |
# File 'lib/circuit_client/client.rb', line 110 def build_uri(path) uri = base_uri uri.path = path uri.to_s end |