Class: Gtmtech::Crypto::Subcommands::Help
Class Method Summary
collapse
all_options, error, find, hidden?, parse, prettyname, usage, validate
Class Method Details
.description ⇒ Object
33
34
35
|
# File 'lib/gtmtech/crypto/subcommands/help.rb', line 33
def self.description
"print help message"
end
|
.execute ⇒ Object
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/gtmtech/crypto/subcommands/help.rb', line 15
def self.execute
puts "Welcome to gtmtech-crypto \#{Gtmtech::Crypto::VERSION} \n\nUsage:\ncrypto <subcommand> ... [global-opts] [subcommand-opts]\n\nAvailable subcommands:\n\#{Gtmtech::Crypto::CLI.subcommands.collect {|command|\n command_class = Gtmtech::Crypto::Subcommands.const_get(Utils.camelcase command)\n sprintf \"%15s: %-65s\", command.downcase, command_class.description unless command_class.hidden?\n}.compact.join(\"\\n\")}\n\nFor more help on an individual command, use --help on that command\n\n"
end
|
.options ⇒ Object
11
12
13
|
# File 'lib/gtmtech/crypto/subcommands/help.rb', line 11
def self.options
[]
end
|