Method: Tane::Commands::Help.process

Defined in:
lib/tane/commands/help.rb

.process(args) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/tane/commands/help.rb', line 4

def process(args)
  if args.count == 0
    puts opts.help_text
    return
  end
  help_for_command args.first.capitalize if args.count != 0
end