vagrant-plugins 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +4 -0
- data/lib/vagrant-plugins/command.rb +2 -2
- data/lib/vagrant-plugins/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG.md
CHANGED
@@ -46,9 +46,9 @@ module VagrantPlugininspection
|
|
46
46
|
:hosts => !!plugin.data[:hosts],
|
47
47
|
:guests => !!plugin.data[:guests],
|
48
48
|
:provisioners => !!plugin.data[:provisioners],
|
49
|
-
:commands =>
|
49
|
+
:commands => plugin.data[:command] && !plugin.command.to_hash.empty?,
|
50
50
|
:action_hooks => !!plugin.data[:action_hooks],
|
51
|
-
:configs =>
|
51
|
+
:configs => plugin.data[:config] && !plugin.config.to_hash.empty?,
|
52
52
|
}) if options[:verbose]
|
53
53
|
|
54
54
|
# return the plugins info Hash
|