lib/renuo/cli.rb in renuo-cli-0.0.1 vs lib/renuo/cli.rb in renuo-cli-0.0.2
- old
+ new
@@ -1,36 +1,61 @@
require 'renuo/cli/version'
require 'rubygems'
require 'renuo/cli/app/name_display'
require 'renuo/cli/app/local_storage'
+require 'renuo/cli/app/migrate_to_github'
+require 'renuo/cli/app/list_large_git_files'
-class Renuo::CLI
- def self.start
- require 'commander/import'
- program :version, '0.0.1'
- program :description, 'renuo CLI'
+module Renuo
+ class CLI
+ def start
+ require 'commander/import'
+ program :version, Renuo::Cli::VERSION
+ program :description, 'renuo CLI'
- command 'display-name'.to_sym do |c|
- c.syntax = 'renuo display-name [options]'
- c.summary = 'displays the name of a customer'
- c.description = ''
- c.example 'description', 'command example'
- c.option '--delete', 'Deletes the current name'
- c.action do |args, _options|
- NameDisplay.new.display_name(args)
+ command 'display-name'.to_sym do |c|
+ c.syntax = 'renuo display-name [options]'
+ c.summary = 'Sets the name of a customer on the Renuo dashboard'
+ c.description = 'Sets the name of a customer on the Renuo dashboard'
+ c.example 'Display "Peter Muster" on the dashboard', 'renuo display-name "Peter Muster"'
+ c.example 'Remove the current name from the dashboard', 'renuo display-name --delete'
+ c.option '--delete', 'Deletes the current name'
+ c.action do |args, options|
+ NameDisplay.new.run(args, options)
+ end
end
- end
- command :config do |c|
- c.syntax = 'renuo config [options]'
- c.summary = ''
- c.description = ''
- c.example 'description', 'command example'
- c.option '--some-switch', 'Some switch that does something'
- c.action do |_args, _options|
- key = ask('API Key?') { |q| q.echo = '*' }
- LocalStorage.new.store(:api_key, key)
- say('stored the api key')
+ command :config do |c|
+ c.syntax = 'renuo config [options]'
+ c.summary = 'Setup the config (API keys)'
+ c.description = 'Setup the config (API keys)'
+ c.action do
+ key = ask('API Key?') { |q| q.echo = '*' }
+ LocalStorage.new.store(:api_key, key)
+ say('stored the api key')
+ end
+ end
+
+ command 'migrate-to-github' do |c|
+ c.syntax = 'renuo migrate-to-github [project]'
+ c.summary = 'A guide how to migrate from gitlab to github'
+ c.description = 'A guide how to migrate from gitlab to github'
+ c.example 'migrate the renuo-cli project', 'renuo migrate-to-github renuo-cli'
+ c.action do |args, _options|
+ MigrateToGithub.new(args.first).run
+ end
+ end
+
+ command 'list-large-git-files' do |c|
+ c.syntax = 'renuo list-large-git-files'
+ c.summary = 'Lists the 5 largest files in a git repository. Warning: must be a bare checkout of the repo!'
+ c.description = "Lists the 5 largest files in a git repository.\nWarning: must be a bare checkout of the repo!"
+ c.example 'list the 5 largest git files of github.com/renuo/renuo-cli',
+ 'git clone --bare git@github.com:renuo/renuo-cli.git && '\
+ 'cd renuo-cli.git && renuo list-large-git-files'
+ c.action do
+ ListLargeGitFiles.new.run
+ end
end
end
end
end