vagrant-deltacloud-provider 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 61de1e408171529d271cdf671c07111c514ab103
4
- data.tar.gz: a9683e962c82e3dd3f3c39b8c7577f8af402e954
3
+ metadata.gz: 48dabe83b429bc8a8a59740af61f60e8a17d60a5
4
+ data.tar.gz: 958319adcc21aa5eac70bdfa1291a536ad3700be
5
5
  SHA512:
6
- metadata.gz: 00f0f0a6a83407ebba812391efbaa298eb3cd60912e852852d2485eb212175d9f2b9c0c2db4aa92ca5e92fe62994467a3f5826ab5e1c58f40855e14c26151f06
7
- data.tar.gz: 67bc711d732d46aafaf0648d842eba890823e43155b0647d04469a05e5278d0195cc0769d82e4f0a2abf81892c4183bf394fd52c9661c608f32c8508aeb7a518
6
+ metadata.gz: 714968c906f53a0e2ad8616324f0857a7676d28dfe645ecc37401c98f59950c78a75d0d0fd5c99a0e9f7466c8fcfc325d66abc53df2f74ea47ee1b4cc734df7e
7
+ data.tar.gz: e7d92bad81a4d04bfe1238d7513897799ffed05b2f063b14ee48719a5aa188a7acc5313f6a9c21b7e0f6a405d0a9ed9e45b2a0a34ea45bc88284774b713582c9
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.0.7 (November 13, 2014)
2
+
3
+ * Turned off the colorize usage, doesn't work from gems installation for some strange reason.
4
+
1
5
  # 0.0.6 (November 13, 2014)
2
6
 
3
7
  * Fixed the colorize usage.
@@ -11,7 +11,7 @@ module VagrantPlugins
11
11
  rescue Errors::VagrantDeltacloudError => e
12
12
  raise e
13
13
  rescue Exception => e
14
- puts I18n.t('vagrant_deltacloud.global_error').colorize(:red) unless e.message && e.message.start_with?('Catched Error:')
14
+ puts I18n.t('vagrant_deltacloud.global_error') unless e.message && e.message.start_with?('Catched Error:')
15
15
  raise $!, "Catched Error: #{$!}", $!.backtrace
16
16
  end
17
17
  # rubocop:enable Lint/RescueException
@@ -23,7 +23,7 @@ module VagrantPlugins
23
23
  rescue Errors::VagrantDeltacloudError => e
24
24
  raise e
25
25
  rescue Exception => e
26
- puts I18n.t('vagrant_deltacloud.global_error').colorize(:red) unless e.message && e.message.start_with?('Catched Error:')
26
+ puts I18n.t('vagrant_deltacloud.global_error') unless e.message && e.message.start_with?('Catched Error:')
27
27
  raise e
28
28
  end
29
29
  # rubocop:enable Lint/RescueException
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Deltacloud
3
- VERSION = '0.0.6'
3
+ VERSION = '0.0.7'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-deltacloud-provider
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tero Keski-Valkama