Sha256: a828258bb3b843edee86c58478a9cdf90a7d7880e9dcc6610f0562b6be99cc89
Contents?: true
Size: 571 Bytes
Versions: 1
Compression:
Stored size: 571 Bytes
Contents
# encoding: utf-8 require 'github_cli/command' module GithubCLI class Repositories < Command namespace :repo option :orgs, :type => :boolean, :desc => 'List repositories for <organization>' desc 'list', 'Listing all repositories' def list say 'listing' end desc 'get', 'Get a repository' def get end desc 'create', 'Create <repo> <user>' def create say 'creating...' end desc 'remove', 'Remove <repo> <user>' def remove say 'removing' end end # Repositories end # GithubCLI
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
github_cli-0.0.1.pre | lib/github_cli/repositories.rb |