Method: Mechanize::HTTP::AuthStore#initialize
- Defined in:
- lib/mechanize/http/auth_store.rb
permalink #initialize ⇒ AuthStore
Creates a new AuthStore
25 26 27 28 29 30 31 |
# File 'lib/mechanize/http/auth_store.rb', line 25 def initialize @auth_accounts = Hash.new do |h, uri| h[uri] = {} end @default_auth = nil end |