module Github::Repos::Collaborators
def remove_collabolator(user, repo, collaborator)
@github.collaborators.remove('user', 'repo', 'collaborator')
@github = Github.new
Examples:
Removes collaborator
def remove_collabolator(user, repo, collaborator) delete("/repos/#{user}/#{repo}/collaborators/#{user}") end