#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] Reset ext/ contents to "pristine" state. This will remove and temporary products created by the compile process, via reap-make-clean, as well as remove all itermediate object files. Run this command if you wish to recompile from scratch. This command is also executed when running reap-clobber. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.make_distclean end