method
with_auth
v3.0.9 -
Show latest stable
- Class:
ActiveResource::Connection
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