mirror of
https://github.com/mistergibson/gxg-web-client.git
synced 2026-08-15 11:34:29 -07:00
17 lines
272 B
Ruby
17 lines
272 B
Ruby
# frozen_string_literal: false
|
|
module Net::HTTP::ProxyDelta #:nodoc: internal use only
|
|
private
|
|
|
|
def conn_address
|
|
proxy_address()
|
|
end
|
|
|
|
def conn_port
|
|
proxy_port()
|
|
end
|
|
|
|
def edit_path(path)
|
|
use_ssl? ? path : "http://#{addr_port()}#{path}"
|
|
end
|
|
end
|
|
|