#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] Reap scaffold will generate a conventional Ruby project layout of directories and files. It uses information from project metadata to improve upon the scaffolding if it is available (see reap-init). reap-scaffold will not overwite pre-existing files of the same name unless the --force option is supplied. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.scaffold end