class Github::Client::Activity::Events
def org(*args)
- Api: - public
Other tags:
- See: https://developer.github.com/v3/activity/events/#list-public-events-for-an-organization -
def org(*args) arguments(args, required: [:name]) response = get_request("/orgs/#{arguments.name}/events", arguments.params) return response unless block_given? response.each { |el| yield el } end