#!/usr/bin/env ruby require 'reap/application' HELP = <<-END Usage: #{File.basename($0)} [options] Remove previsously installed gem. This is equivalent to $ gem uninstall {project name} The reap command is provided as a convenience when testing gem installation using reap-install-gem. END if ARGV.include?('--help') puts HELP else app = Reap::Application.new app.gem_uninstall end