Class: Inch::CLI::Command::Base Abstract
- Inherits:
-
Object
- Object
- Inch::CLI::Command::Base
- Includes:
- TraceHelper
- Defined in:
- lib/inch/cli/command/base.rb
Overview
Subclass and override #run to implement a new command
This was adapted from YARD github.com/lsegal/yard/blob/master/lib/yard/cli/command.rb
Abstract base class for CLI controller objects
Instance Attribute Summary collapse
- #codebase ⇒ Codebase::Proxy readonly
Class Method Summary collapse
-
.register_command_as(name, default = false) ⇒ void
Registers the current Command in the CommandParser.
-
.run(*args) ⇒ Command::Base
Helper method to run an instance with the given
args
.
Instance Method Summary collapse
-
#description ⇒ String
Returns a description of the command.
-
#initialize ⇒ Base
constructor
A new instance of Base.
-
#name ⇒ String
Returns the name of the command by which it is referenced in the command list.
-
#run(*args) ⇒ Object
abstract
Runs the command with the given
args
. -
#usage ⇒ String
Returns a description of the command’s usage pattern.
Methods included from TraceHelper
Constructor Details
Instance Attribute Details
#codebase ⇒ Codebase::Proxy (readonly)
41 42 43 |
# File 'lib/inch/cli/command/base.rb', line 41 def codebase @codebase end |
Class Method Details
.register_command_as(name, default = false) ⇒ void
This method returns an undefined value.
Registers the current Command in the CommandParser
57 58 59 60 |
# File 'lib/inch/cli/command/base.rb', line 57 def self.register_command_as(name, default = false) CLI::CommandParser.default_command = name if default CLI::CommandParser.commands[name] = self end |
.run(*args) ⇒ Command::Base
Helper method to run an instance with the given args
47 48 49 50 51 |
# File 'lib/inch/cli/command/base.rb', line 47 def self.run(*args) command = new command.run(*args) command end |
Instance Method Details
#description ⇒ String
Returns a description of the command
72 73 74 |
# File 'lib/inch/cli/command/base.rb', line 72 def description "" end |
#name ⇒ String
Returns the name of the command by which it is referenced in the command list
80 81 82 83 84 |
# File 'lib/inch/cli/command/base.rb', line 80 def name CommandParser.commands.each do |name, klass| return name if klass == self.class end end |
#run(*args) ⇒ Object
Override with implementation
Runs the command with the given args
91 92 93 |
# File 'lib/inch/cli/command/base.rb', line 91 def run(*args) raise NotImplementedError end |
#usage ⇒ String
Returns a description of the command’s usage pattern
98 99 100 |
# File 'lib/inch/cli/command/base.rb', line 98 def usage "Usage: inch #{name} [options]" end |