vagrant-plugins 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,14 +1,15 @@
1
- require 'vagrant'
2
- require "vagrant-plugins/version"
3
- require "vagrant-plugins/helper"
4
- require "vagrant-plugins/ui"
5
- require "vagrant-plugins/command"
6
-
7
1
  module VagrantPlugininspection
8
2
  class Plugin < Vagrant.plugin("1")
9
3
  name "plugins"
10
4
  description "List all vagrant plugins loaded in the current vagrant environment"
11
5
 
6
+ activated do
7
+ require "vagrant-plugins/version"
8
+ require "vagrant-plugins/helper"
9
+ require "vagrant-plugins/ui"
10
+ require "vagrant-plugins/command"
11
+ end
12
+
12
13
  command('plugins') { Command }
13
14
  end
14
15
  end
@@ -1,7 +1,7 @@
1
1
  require 'optparse'
2
2
 
3
3
  module VagrantPlugininspection
4
- class Command < Vagrant::Command::Base
4
+ class Command < Vagrant::plugin("1", :command)
5
5
 
6
6
  def execute
7
7
  options = {}
@@ -1,3 +1,3 @@
1
1
  module VagrantPlugininspection
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-plugins
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-18 00:00:00.000000000 Z
12
+ date: 2012-07-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: vagrant