Sha256: 66cb3ac82814c4b2b4d515d123d2e66651281b74267cda6417caea4063e95393
Contents?: true
Size: 895 Bytes
Versions: 22
Compression:
Stored size: 895 Bytes
Contents
require 'optparse' require_relative "base" module VagrantPlugins module CommandPlugin module Command class Uninstall < Base def execute options = {} opts = OptionParser.new do |o| o.banner = "Usage: vagrant plugin uninstall <name> [<name2> <name3> ...] [-h]" o.on("--local", "Remove plugin from local project") do |l| options[:env_local] = l end end # Parse the options argv = parse_options(opts) return if !argv raise Vagrant::Errors::CLIInvalidUsage, help: opts.help.chomp if argv.length < 1 # Uninstall the gems argv.each do |gem| action(Action.action_uninstall, plugin_name: gem, env_local: options[:env_local]) end # Success, exit status 0 0 end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems