class Github::Events

def org(org_name, params={})


@github.events.org 'org-name' { |event| ... }
@github.events.org 'org-name'
@github = Github.new
= Examples

List all public events for an organization
def org(org_name, params={})
  _validate_presence_of org_name
  _normalize_params_keys(params)
  response = get("/orgs/#{org_name}/events", params)
  return response unless block_given?
  response.each { |el| yield el }
end