Merge pull request #2583 from tmatilai/plugin-regressions

commands/plugin: fix plugin regressions for new state file
This commit is contained in:
Mitchell Hashimoto 2013-12-04 14:23:51 -08:00
commit 20f2e65be4
6 changed files with 8 additions and 8 deletions

View File

@ -755,9 +755,9 @@ module Vagrant
next
end
@logger.info("Loading plugin from JSON: #{plugin}")
@logger.info("Loading plugin from JSON: #{name}")
begin
Vagrant.require_plugin(plugin)
Vagrant.require_plugin(name)
rescue Errors::PluginLoadError => e
@ui.error(e.message + "\n")
rescue Errors::PluginLoadFailed => e

View File

@ -18,7 +18,7 @@ module VagrantPlugins
def call(env)
# Get the list of installed plugins according to the state file
installed = Set.new(env[:plugin_state_file].installed_plugins)
installed = env[:plugin_state_file].installed_plugins.keys
# If the plugin we're trying to license doesn't exist in the
# state file, then it is an error.

View File

@ -18,7 +18,7 @@ module VagrantPlugins
def call(env)
# Get the list of installed plugins according to the state file
installed = Set.new(env[:plugin_state_file].installed_plugins)
installed = env[:plugin_state_file].installed_plugins.keys
# Go through the plugins installed in this environment and
# get the latest version of each.

View File

@ -12,7 +12,7 @@ module VagrantPlugins
def call(env)
# Get the list of installed plugins according to the state file
installed = Set.new(env[:plugin_state_file].installed_plugins)
installed = env[:plugin_state_file].installed_plugins.keys
if !installed.include?(env[:plugin_name])
raise Vagrant::Errors::PluginNotInstalled,
name: env[:plugin_name]

View File

@ -34,7 +34,7 @@ module VagrantPlugins
@logger.info("Pruning gems...")
# Get the list of installed plugins according to the state file
installed = Set.new(env[:plugin_state_file].installed_plugins)
installed = env[:plugin_state_file].installed_plugins.keys
# Get the actual specifications of installed gems
all_specs = env[:gem_helper].with_environment do

View File

@ -32,11 +32,11 @@ module VagrantPlugins
save!
end
# This returns a list of installed plugins according to the state
# This returns a hash of installed plugins according to the state
# file. Note that this may _not_ directly match over to actually
# installed gems.
#
# @return [Array<String>]
# @return [Hash]
def installed_plugins
@data["installed"]
end