Sha256: 1f96d06b96d02a05907d10f96be01be7e8fc4a32c15087d9c7d8953a538d1627

Contents?: true

Size: 1.03 KB

Versions: 47

Compression:

Stored size: 1.03 KB

Contents

module VagrantPlugins
  module CommandPlugin
    module Command
      module MixinInstallOpts
        def build_install_opts(o, options)
          options[:plugin_sources] = Vagrant::Bundler::DEFAULT_GEM_SOURCES.dup

          o.on("--entry-point NAME", String,
               "The name of the entry point file for loading the plugin.") do |entry_point|
            options[:entry_point] = entry_point
          end

          o.on("--plugin-clean-sources",
            "Remove all plugin sources defined so far (including defaults)") do |clean|
            options[:plugin_sources] = [] if clean
          end

          o.on("--plugin-source PLUGIN_SOURCE", String,
               "Add a RubyGems repository source") do |plugin_source|
            options[:plugin_sources] << plugin_source
          end

          o.on("--plugin-version PLUGIN_VERSION", String,
               "Install a specific version of the plugin") do |plugin_version|
            options[:plugin_version] = plugin_version
          end
        end
      end
    end
  end
end

Version data entries

47 entries across 43 versions & 5 rubygems

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