Sha256: fda5e8135a35eac6379729b24b0c01878776c89345addba67d7ec66fc64d6239
Contents?: true
Size: 929 Bytes
Versions: 9
Compression:
Stored size: 929 Bytes
Contents
# encoding: utf-8 module GithubCLI class Watching < API class << self def watchers(user, repo, params, format) output format do github_api.repos.watching.watchers user, repo, params end end def watched(params, format) output format do github_api.repos.watching.watched user, repo, id, params end end def watching?(user, repo, params, format) output format do github_api.repos.watching.watching? user, repo, params end end def start_watching(user, repo, params, format) output format do github_api.repos.watching.start_watching user, repo, params end end def stop_watching(user, repo, params, format) output format do github_api.repos.watching.stop_watching user, repo, params end end end end # Watching end # GithubCLI
Version data entries
9 entries across 9 versions & 1 rubygems