Method: HTTPClient::ProxyAuth#initialize
- Defined in:
- lib/httpclient.rb
#initialize ⇒ ProxyAuth
Returns a new instance of ProxyAuth.
645 646 647 648 649 650 |
# File 'lib/httpclient.rb', line 645 def initialize @basic_auth = BasicAuth.new @negotiate_auth = NegotiateAuth.new # sort authenticators by priority @authenticator = [@negotiate_auth, @basic_auth] end |