2013-02-03 02:42:04 +00:00
|
|
|
require 'optparse'
|
|
|
|
|
2013-02-03 07:38:44 +00:00
|
|
|
require_relative "base"
|
|
|
|
|
2013-02-03 02:42:04 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module CommandPlugin
|
|
|
|
module Command
|
2013-02-03 07:38:44 +00:00
|
|
|
class Install < Base
|
2013-02-03 02:42:04 +00:00
|
|
|
def execute
|
2013-02-03 21:59:43 +00:00
|
|
|
options = {}
|
|
|
|
|
2013-02-03 02:42:04 +00:00
|
|
|
opts = OptionParser.new do |o|
|
|
|
|
o.banner = "Usage: vagrant plugin install <name> [-h]"
|
2013-02-03 21:59:43 +00:00
|
|
|
o.separator ""
|
|
|
|
|
|
|
|
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
|
2013-03-21 05:30:31 +00:00
|
|
|
|
2013-03-20 06:02:32 +00:00
|
|
|
o.on("--plugin-prerelease",
|
2013-03-21 05:30:31 +00:00
|
|
|
"Allow prerelease versions of this plugin.") do |plugin_prerelease|
|
2013-03-20 06:02:32 +00:00
|
|
|
options[:plugin_prerelease] = plugin_prerelease
|
|
|
|
end
|
2013-03-21 05:30:31 +00:00
|
|
|
|
|
|
|
o.on("--plugin-source PLUGIN_SOURCE", String,
|
|
|
|
"Add a RubyGems repository source") do |plugin_source|
|
|
|
|
options[:plugin_sources] ||= []
|
|
|
|
options[:plugin_sources] << plugin_source
|
|
|
|
end
|
|
|
|
|
2013-03-20 06:02:32 +00:00
|
|
|
o.on("--plugin-version PLUGIN_VERSION", String,
|
|
|
|
"Install a specific version of the plugin") do |plugin_version|
|
|
|
|
options[:plugin_version] = plugin_version
|
|
|
|
end
|
2013-02-03 02:42:04 +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
|
|
|
|
|
|
|
|
# Install the gem
|
2013-02-03 21:59:43 +00:00
|
|
|
action(Action.action_install, {
|
|
|
|
:plugin_entry_point => options[:entry_point],
|
2013-03-21 05:30:31 +00:00
|
|
|
:plugin_prerelease => options[:plugin_prerelease],
|
|
|
|
:plugin_version => options[:plugin_version],
|
|
|
|
:plugin_sources => options[:plugin_sources],
|
2013-02-03 21:59:43 +00:00
|
|
|
:plugin_name => argv[0]
|
|
|
|
})
|
2013-02-03 02:42:04 +00:00
|
|
|
|
|
|
|
# Success, exit status 0
|
|
|
|
0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|