class Github::Client::Authorizations

def delete(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/oauth_authorizations/#delete-an-authorization -
def delete(*args)
  raise_authentication_error unless authenticated?
  arguments(args, required: [:id])
  delete_request("/authorizations/#{arguments.id}", arguments.params)
end