class Github::Client::Activity::Events

def public(*args)

Other tags:
    Api: - public
def public(*args)
  arguments(args)
  response = get_request("/events", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end