bin/reap-make-extconf in reap-9.3.5 vs bin/reap-make-extconf in reap-9.4.0

- old
+ new

@@ -1,7 +1,19 @@ #!/usr/bin/env ruby require 'reap/application' -app = Reap::Application.new +HELP = <<-END +Usage: #{File.basename($0)} [options] -app.make_extconf +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 +