module Github::Authorization

def authenticated?

Check whether authentication credentials are present
def authenticated?
  basic_auth? || oauth_token? || (login? && password?)
end