class Github::Client::Repos::Statistics

def contributors(*args)

Other tags:
    Api: - public
def contributors(*args)
  arguments(args, required: [:user, :repo])
  response = get_request("/repos/#{arguments.user}/#{arguments.repo}/stats/contributors", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end