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

36 lines
883 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
options = {}
2013-02-03 18:47:01 +00:00
opts = OptionParser.new do |o|
2014-01-07 22:11:33 +00:00
o.banner = "Usage: vagrant plugin uninstall <name> [<name2> <name3> ...] [-h]"
o.on("--local", "Remove plugin from local project") do |l|
options[:local] = l
end
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, local: options[:local])
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