2014-01-05 16:42:34 +00:00
|
|
|
require "vagrant/plugin/manager"
|
|
|
|
|
2013-02-03 07:52:34 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module CommandPlugin
|
|
|
|
module Action
|
2013-02-03 07:59:48 +00:00
|
|
|
# This middleware lists all the installed plugins.
|
|
|
|
#
|
|
|
|
# This is a bit more complicated than simply listing installed
|
|
|
|
# gems or what is in the state file as installed. Instead, this
|
|
|
|
# actually compares installed gems with what the state file claims
|
|
|
|
# is installed, and outputs the appropriate truly installed
|
|
|
|
# plugins.
|
2013-02-03 07:52:34 +00:00
|
|
|
class ListPlugins
|
|
|
|
def initialize(app, env)
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(env)
|
2014-01-06 04:50:25 +00:00
|
|
|
specs = Vagrant::Plugin::Manager.instance.installed_specs
|
2013-02-03 20:59:32 +00:00
|
|
|
|
|
|
|
# Output!
|
2014-01-06 04:50:25 +00:00
|
|
|
if specs.empty?
|
2013-02-03 21:13:22 +00:00
|
|
|
env[:ui].info(I18n.t("vagrant.commands.plugin.no_plugins"))
|
2014-01-06 04:50:25 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
specs.each do |spec|
|
|
|
|
env[:ui].info "#{spec.name} (#{spec.version})"
|
2013-02-03 07:52:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@app.call(env)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|