vmc 0.5.0.beta.11 → 0.5.0.beta.12
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.
- data/lib/vmc/plugin.rb +9 -1
- data/lib/vmc/version.rb +1 -1
- metadata +3 -3
data/lib/vmc/plugin.rb
CHANGED
@@ -41,7 +41,15 @@ module VMC
|
|
41
41
|
# we require this file specifically so people can require the gem
|
42
42
|
# without it plugging into VMC
|
43
43
|
enabled.each do |gemname|
|
44
|
-
|
44
|
+
begin
|
45
|
+
require "#{gemname}/plugin"
|
46
|
+
rescue Gem::LoadError => e
|
47
|
+
puts "Failed to load #{gemname}:"
|
48
|
+
puts " #{e}"
|
49
|
+
puts
|
50
|
+
puts "You may need to update or remove this plugin."
|
51
|
+
puts
|
52
|
+
end
|
45
53
|
end
|
46
54
|
end
|
47
55
|
end
|
data/lib/vmc/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vmc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 4075627999
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
9
|
- 0
|
10
10
|
- beta
|
11
|
-
-
|
12
|
-
version: 0.5.0.beta.
|
11
|
+
- 12
|
12
|
+
version: 0.5.0.beta.12
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Cloud Foundry Team
|