#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] Generate specification documentation. This shells out to the 'spec' command per RSpec to generate the specification outline. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.spec_doc end