method

with_auth

with_auth()
private

No documentation available.

# File activeresource/lib/active_resource/connection.rb, line 215
      def with_auth
        retried ||= false
        yield
      rescue UnauthorizedAccess => e
        raise if retried || auth_type != :digest
        @response_auth_header = e.response['WWW-Authenticate']
        retried = true
        retry
      end