Method: Lemon::CLI::Base#run

Defined in:
lib/lemon/cli/base.rb

#run(argv) ⇒ Object



21
22
23
24
25
26
27
28
29
# File 'lib/lemon/cli/base.rb', line 21

def run(argv)
  begin
    command_parse(argv)
    command_run(argv)
  #rescue => err
  #  raise err if $DEBUG
  #  $stderr.puts('ERROR: ' + err.to_s)
  end
end