# File lib/Borges/Response/BasicAuthResponse.rb, line 3
  def initialize(realm)
    @realm = realm

    super()

    @status = 401
    @headers.update({'WWW-Authenticate' => %^Basic realm="#{@realm}"^})

    @contents = "<h1>Authentication Failed</h1>"
  end