Sha256: c3646e040c649c93dfb581b734e6ad4d9798e52042297206da37da5a3d3e2a2d
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
# encoding: utf-8 module GithubCLI class Event < API class << self def public(params, format) output format do github_api.activity.events.public params end end def repository(user, repo, params, format) output format do github_api.activity.events.repository user, repo, params end end def issue(user, repo, params, format) output format do github_api.activity.events.issue user, repo, params end end def network(user, repo, params, format) output format do github_api.activity.events.network user, repo, params end end def organization(org, params, format) output format do github_api.activity.events.organization org, params end end def received(user, params, format) output format do github_api.activity.events.received user, params end end def performed(user, params, format) output format do github_api.activity.events.performed user, params end end def user_org(user, org, params, format) output format do github_api.activity.events.user_org user, org, params end end end end # Event end # GithubCLI
Version data entries
6 entries across 6 versions & 1 rubygems