Method: Backlog::Help#print_help

Defined in:
lib/backlog/help.rb


29
30
31
32
33
34
35
36
37
# File 'lib/backlog/help.rb', line 29

def print_help(command_class)

  if defined? command_class.help

    help = command_class.help
    puts help
  end

end