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.
Files changed (3) hide show
  1. data/lib/vmc/plugin.rb +9 -1
  2. data/lib/vmc/version.rb +1 -1
  3. 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
- require "#{gemname}/plugin"
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
@@ -1,3 +1,3 @@
1
1
  module VMC
2
- VERSION = "0.5.0.beta.11".freeze
2
+ VERSION = "0.5.0.beta.12".freeze
3
3
  end
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: 2194987339
4
+ hash: 4075627999
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
9
  - 0
10
10
  - beta
11
- - 11
12
- version: 0.5.0.beta.11
11
+ - 12
12
+ version: 0.5.0.beta.12
13
13
  platform: ruby
14
14
  authors:
15
15
  - Cloud Foundry Team