method
with_auth
rails latest stable - Class:
ActiveResource::Connection
with_auth()private
No documentation available.
# File activeresource/lib/active_resource/connection.rb, line 216
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