class Github::Events

def public(params={})


github.events.public { |event| ... }
github.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