class Github::Activity::Events

def public(*args)


github.activity.events.public { |event| ... }
github.activity.events.public
github = Github.new
= Examples

List all public events
def public(*args)
  arguments(args)
  response = get_request("/events", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end