#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] This command searches for extconf.rb scripts under the ext/ directory and runs them, which if configured properly, will generate suitable Makefiles for compiling any extensions. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.make_config end