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

Version Path
vagrant-unbundled-2.3.6.0 plugins/commands/plugin/command/uninstall.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.3.3.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.3.2.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.19.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.18.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.16.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.14.0 plugins/commands/plugin/command/uninstall.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.10.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.9.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.8.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.7.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.6.2 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.6.1 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.6.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.5.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.4.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.3.0 plugins/commands/plugin/command/uninstall.rb
vagrant-unbundled-2.2.2.0 plugins/commands/plugin/command/uninstall.rb