class Github::Client::Repos::Collaborators

def collaborator?(*args)

Other tags:
    Api: - public
def collaborator?(*args)
  arguments(args, required: [:user, :repo, :username])
  get_request("/repos/#{arguments.user}/#{arguments.repo}/collaborators/#{arguments.username}", arguments.params)
  true
rescue Github::Error::NotFound
  false
end