vagrant-plugins 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vagrant-plugins.rb +7 -6
- data/lib/vagrant-plugins/command.rb +1 -1
- data/lib/vagrant-plugins/version.rb +1 -1
- metadata +2 -2
data/lib/vagrant-plugins.rb
CHANGED
@@ -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
|
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.
|
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-
|
12
|
+
date: 2012-07-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: vagrant
|