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