module Github::Authorization

def basic_authed?

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