Class: Commander::HelpFormatter::Base
- Defined in:
- lib/commander/help_formatters/base.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(runner) ⇒ Base
constructor
A new instance of Base.
- #render ⇒ Object
- #render_command(command) ⇒ Object
Constructor Details
#initialize(runner) ⇒ Base
Returns a new instance of Base.
13 |
# File 'lib/commander/help_formatters/base.rb', line 13 def initialize runner; @runner = runner end |
Instance Method Details
#render ⇒ Object
14 |
# File 'lib/commander/help_formatters/base.rb', line 14 def render; 'Implement global help here' end |
#render_command(command) ⇒ Object
15 |
# File 'lib/commander/help_formatters/base.rb', line 15 def render_command command; "Implement help for #{command.name} here" end |