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 response = get_request("/orgs/#{org_name}/events", params) return response unless block_given? response.each { |el| yield el } end