class RoadForest::HTTP::CredentialSource

Public Instance Methods

canonical_root(url) click to toggle source
# File lib/roadforest/http/keychain.rb, line 14
def canonical_root(url)
  url = Addressable::URI.parse(url)
  url.path = "/"
  url.to_s
end
respond_to_challenge(url, realm, attempt) click to toggle source

@returns {BasicCredentials} @returns nil to indicate no further credentials available

# File lib/roadforest/http/keychain.rb, line 22
def respond_to_challenge(url, realm, attempt)
  nil
end