class Github::Activity::Events
def public(params={})
github.activity.events.public { |event| ... }
github.activity.events.public
github = Github.new
= Examples
List all public events
def public(params={}) normalize! params response = get_request("/events", params) return response unless block_given? response.each { |el| yield el } end