bin/reap-inspect in reap-9.3.5 vs bin/reap-inspect in reap-9.4.0

- old
+ new

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