2013-02-03 18:47:01 +00:00
|
|
|
require 'optparse'
|
|
|
|
|
|
|
|
require_relative "base"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CommandPlugin
|
|
|
|
module Command
|
|
|
|
class Uninstall < Base
|
|
|
|
def execute
|
|
|
|
opts = OptionParser.new do |o|
|
2014-01-07 22:11:33 +00:00
|
|
|
o.banner = "Usage: vagrant plugin uninstall <name> [<name2> <name3> ...] [-h]"
|
2013-02-03 18:47:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Parse the options
|
|
|
|
argv = parse_options(opts)
|
|
|
|
return if !argv
|
2014-05-22 16:35:12 +00:00
|
|
|
raise Vagrant::Errors::CLIInvalidUsage, help: opts.help.chomp if argv.length < 1
|
2013-02-03 18:47:01 +00:00
|
|
|
|
2014-01-03 23:31:15 +00:00
|
|
|
# Uninstall the gems
|
2014-01-07 22:11:33 +00:00
|
|
|
argv.each do |gem|
|
2014-05-22 16:35:12 +00:00
|
|
|
action(Action.action_uninstall, plugin_name: gem)
|
2014-01-07 22:11:33 +00:00
|
|
|
end
|
2013-02-03 18:47:01 +00:00
|
|
|
|
|
|
|
# Success, exit status 0
|
|
|
|
0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|