class Github::Repos::Statistics
def participation(*args)
github.repos.stats.participation user: '...', repo: '...' { |stat| ... }
github.repos.stats.participation user: '...', repo: '...'
github = Github.new
= Examples
Get the weekly commit count for the repo owner and everyone else
def participation(*args) arguments(args, :required => [:user, :repo]) params = arguments.params get_request("/repos/#{user}/#{repo}/stats/participation", params) end