#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] Run unit tests. This is a general unit test runner, which loads all tests into a single process and and then runs them consecutively. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.test_unit end