Sha256: 37157274359e358717ba8e692cb43a9f48eded4657a3dab30f93233cf34a7fbc

Contents?: true

Size: 397 Bytes

Versions: 1

Compression:

Stored size: 397 Bytes

Contents

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-9.4.0 bin/reap-uninstall-gem