#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] Thois command dumps project metadata. It is useful for debugging configuration settings. You can speciify the name of a particular piece of metadata to see just that information. For example: #{File.basename($0)} version 9.3.5 If no name is given then all metadata is dumped to standard-out in YAML format. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.introspect end