Sha256: 805eec8058d9404b9cca2e11eb338f047c3067a11ed669ea0b47b7d1a1a33a79
Contents?: true
Size: 1.01 KB
Versions: 12
Compression:
Stored size: 1.01 KB
Contents
# encoding: utf-8 module GithubCLI class Commands::Forks < Command namespace :fork desc 'list <user> <repo>', 'Lists forks' long_desc <<-DESC List repository forks Parameters sort - newest, oldest, watchers, default: newest DESC method_option :sort, :type => :string, :aliases => ["-s"], :desc => 'Sort by newest, oldest or watchers', :banner => '<sort-category>' def list(user, repo) if options[:sort] options[:params]['sort'] = options[:sort] end Fork.all user, repo, options[:params], options[:format] end desc 'create <user> <repo>', 'Create a new fork' method_option :org, :type => :string, :desc => ' Organization login. The repository will be forked into this organization.' def create(user, repo) if options[:org] options[:params]['org'] = options[:org] end Fork.create user, repo, options[:params], options[:format] end end # Forks end # GithubCLI
Version data entries
12 entries across 12 versions & 1 rubygems