vagrant/plugins/commands/plugin/command/uninstall.rb

31 lines
714 B
Ruby
Raw Normal View History

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
raise Vagrant::Errors::CLIInvalidUsage, help: opts.help.chomp if argv.length < 1
2013-02-03 18:47:01 +00:00
# Uninstall the gems
2014-01-07 22:11:33 +00:00
argv.each do |gem|
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