class Github::Client::Activity::Events

def network(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/activity/events/#list-public-events-for-a-network-of-repositories -
def network(*args)
  arguments(args, required: [:user, :repo])
  response = get_request("/networks/#{arguments.user}/#{arguments.repo}/events", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end