Sha256: 50fb740801c343923de16c4babc0ca15e7c84aad256b988256c87fd5af90b61a

Contents?: true

Size: 382 Bytes

Versions: 1

Compression:

Stored size: 382 Bytes

Contents

#!/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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-9.4.0 bin/reap-make-extconf