Sha256: 8cb600ffc9c90815e5f283a55bbfc321a1ccfd41b9fd43a4143c4bbca488b859

Contents?: true

Size: 516 Bytes

Versions: 1

Compression:

Stored size: 516 Bytes

Contents

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-9.4.0 bin/reap-inspect