module Netrecording::NetHTTPHeader

Public Instance Methods

basic_auth(account, password) click to toggle source

override basic auth to make grabbing the basic auth easy

# File lib/netrecording/http_header.rb, line 9
def basic_auth(account, password)
  @bauth = "#{account}:#{password}@"
  alias_for_basic_auth(account, password)
end