Class: VagrantPlugininspection::Command

Inherits:
Vagrant::Command::Base
  • Object
show all
Defined in:
lib/vagrant-plugins/command.rb

Instance Method Summary collapse

Instance Method Details

#executeObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/vagrant-plugins/command.rb', line 6

def execute
  options = {}
  opts = OptionParser.new do |opts|
    opts.banner = "Usage: vagrant plugins"
    opts.separator ""

    opts.on("-a", "--all", "List builtin vagrant plugins as well.") do
      options[:all] = true
    end
  end

  argv = parse_options(opts)
  return if !argv

  ui = VagrantPlugininspection::UI::Columnized.new('plugins')

  if Vagrant.plugin("1").registered.empty?
    ui.info "No plugins registered"
  else

    builtins = VagrantPlugins.constants.map { |p| 
      VagrantPlugininspection::Inflector::constantize("VagrantPlugins::#{p}::Plugin") 
    } if !options[:all]
    
    plugins = Vagrant.plugin("1").registered.map { |plugin|
      if options[:all] || !builtins.include?(plugin)
        {
          :name => plugin.name, 
          :description => plugin.description
        }
      end
    }.compact

    ui.print_columns plugins, :column_order => [:name, :description]
  end
end