fog-brightbox 0.16.0 → 0.16.1

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
  SHA256:
3
- metadata.gz: 9e0a7fbcbe8d4b8cf7cfce8065121a8017116ad5caf17f22463df71971b2f3bc
4
- data.tar.gz: f29b9da66790d0090a76c65d34526e51561a2d6dc4ad9313d2daa1ccf801c6b2
3
+ metadata.gz: 9915ff1129a85d258d8bbbf47b86461766e80fb2cba86e6205838e4fa90ee82f
4
+ data.tar.gz: 3662c70c238edfcc3bbd3de47a6da63f9fa08d043106f3cc2093a8209317ff2e
5
5
  SHA512:
6
- metadata.gz: 3f55119efd95aaed7239c3c88e92ea884c21fca0169abd3dc47712b3848dabcec9706c98858154fd3de2423323ff1a1a1dc6215936c26d8adc14974ac52c8d6b
7
- data.tar.gz: 817d96a885f8b0177f91f972c2cb172d987b040859694fdc27b078475af0c5866c195c73f12981dca32e7ea1e7ffc1b7435e0e0a8602a0c42b2c032fdb058311
6
+ metadata.gz: c15dbff05ec3bdc18fe380d3913913522940a025d01d2bb283188d6baa0c1ccc3d708e07091ddc5f52c292ce37b79cf7462dbbd96a54ba2ce6c740e7bc777132
7
+ data.tar.gz: 7254d5b3cf91272d3d2a35b1a7e80739c5be47f5f6ff2e08d3ce4787eb398146c56ea098d86513097ba9f677b01aab298644b4c11213f5e68ea34afaf9e1e86e
@@ -1,3 +1,11 @@
1
+ ### 0.16.1 / 2018-09-07
2
+
3
+ Bug fixes:
4
+
5
+ * Fix ordering issue between declaration of fog services and `autoload` modules.
6
+ Changes in `fog-core` would reference modules before available in autoload so
7
+ caused a name error.
8
+
1
9
  ### 0.16.0 / 2018-09-04
2
10
 
3
11
  Changes:
@@ -11,9 +11,6 @@ module Fog
11
11
  module Brightbox
12
12
  extend Fog::Provider
13
13
 
14
- service(:compute, "Compute")
15
- service(:storage, "Storage")
16
-
17
14
  module Compute
18
15
  autoload :Config, File.expand_path("../brightbox/compute/config", __FILE__)
19
16
  autoload :ImageSelector, File.expand_path("../brightbox/compute/image_selector", __FILE__)
@@ -34,6 +31,9 @@ module Fog
34
31
  autoload :Model, File.expand_path("../brightbox/model", __FILE__)
35
32
  autoload :ModelHelper, File.expand_path("../brightbox/model_helper", __FILE__)
36
33
  autoload :OAuth2, File.expand_path("../brightbox/oauth2", __FILE__)
34
+
35
+ service(:compute, "Compute")
36
+ service(:storage, "Storage")
37
37
  end
38
38
 
39
39
  module Compute
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Brightbox
3
- VERSION = "0.16.0"
3
+ VERSION = "0.16.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-brightbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.16.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Thornthwaite
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-04 00:00:00.000000000 Z
11
+ date: 2018-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core