Sha256: 8b21195801be6fb438df6f6270c68ff85f088bf901973264b8bfc15ba8cf0b55
Contents?: true
Size: 497 Bytes
Versions: 11
Compression:
Stored size: 497 Bytes
Contents
# encoding: utf-8 module GithubCLI class Organization < API class << self def list(params, format) output format do github_api.orgs.list params end end def get(org, params, format) output format do github_api.orgs.get org, params end end def edit(org, params, format) output format do github_api.orgs.edit org, params end end end end # Organization end # GithubCLI
Version data entries
11 entries across 11 versions & 1 rubygems