method
new_http
new_http()
private
Hide source
# File activeresource/lib/active_resource/connection.rb, line 159 def new_http if @proxy Net::HTTP.new(@site.host, @site.port, @proxy.host, @proxy.port, @proxy.user, @proxy.password) else Net::HTTP.new(@site.host, @site.port) end end


