create_proxy_uri_from(proxy)
Accepts a URI and creates the proxy URI from that.
# File activeresource/lib/active_resource/base.rb, line 682 def create_proxy_uri_from(proxy) proxy.is_a?(URI) ? proxy.dup : URI.parse(proxy) end