class Derelict::Parser::PluginList::NeedsReinstall
Vagrant plugins need to be uninstalled and re-installed
Attributes
output[R]
Retrieves the output from Vagrant
Public Class Methods
new(output)
click to toggle source
Initializes a new instance, for a particular box name/provider
* output: The output from Vagrant
Calls superclass method
# File lib/derelict/parser/plugin_list/needs_reinstall.rb, line 12 def initialize(output) @output = output super <<-END.gsub(/\s+/, ' ').strip Vagrant plugins installed before upgrading to version 1.4.x need to be uninstalled and re-installed. END end