class Commander::HelpFormatter::Base
Public Class Methods
new(runner;)
click to toggle source
# File lib/commander/help_formatters/base.rb, line 13 def initialize runner; @runner = runner end
Public Instance Methods
render()
click to toggle source
# File lib/commander/help_formatters/base.rb, line 14 def render; 'Implement global help here' end
render_command(command;)
click to toggle source
# File lib/commander/help_formatters/base.rb, line 15 def render_command command; "Implement help for #{command.name} here" end