Class: SubCommandBase
- Inherits:
-
Thor
- Object
- Thor
- SubCommandBase
- Defined in:
- lib/sub_command_base.rb
Class Method Summary collapse
Class Method Details
.banner(command, namespace = nil, subcommand = false) ⇒ Object
2 3 4 |
# File 'lib/sub_command_base.rb', line 2 def self.(command, namespace = nil, subcommand = false) "#{basename} #{subcommand_prefix} #{command.usage}" end |
.subcommand_prefix ⇒ Object
6 7 8 |
# File 'lib/sub_command_base.rb', line 6 def self.subcommand_prefix self.name.gsub(%r{.*::}, '').gsub(%r{^[A-Z]}) { |match| match[0].downcase }.gsub(%r{[A-Z]}) { |match| "-#{match[0].downcase}" } end |