class Bizflow::HelpCommand
Public Class Methods
run(config, args)
click to toggle source
# File lib/bizflow/command/help_command.rb, line 4 def self.run(config, args) puts "run one of these commands like this:" puts "bizflow COMMAND_NAME [ARGS]" puts "commands:\n#{Bizflow::CommandHelper::CommandHash.keys.join("\n")}" end