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