Sha256: c282922d323e75fc52bd73e4b670120fb21a0bdd9add020d3b8271c322b7cb59
Contents?: true
Size: 886 Bytes
Versions: 6
Compression:
Stored size: 886 Bytes
Contents
# encoding: utf-8 module GithubCLI class Starring < API class << self def list(user, repo, params, format) output format do github_api.activity.starring.list user, repo, params end end def starred(params, format) output format do github_api.activity.starring.starred params end end def starring?(user, repo, params, format) output format do github_api.activity.starring.starring? user, repo, params end end def star(user, repo, params, format) output format do github_api.activity.starring.star user, repo, params end end def unstar(user, repo, params, format) output format do github_api.activity.starring.unstar user, repo, params end end end end # Starring end # GithubCLI
Version data entries
6 entries across 6 versions & 1 rubygems