Class: Piggly::Command::Base
Class Method Summary collapse
Class Method Details
.main(argv) ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/piggly/command/base.rb', line 9 def main(argv) cmd, argv = command(argv) if cmd.nil? abort "usage: #{$0} {test|report|trace|untrace} --help" else cmd.main(argv) end end |