Flowdock
method

with_auth

Importance_0
v3.0.9 - Show latest stable - 0 notes - Class: ActiveResource::Connection
with_auth() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.