class Github::Client::Repos::Statistics

def punch_card(*args)

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