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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/fog/brightbox.rb +3 -3
- data/lib/fog/brightbox/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9915ff1129a85d258d8bbbf47b86461766e80fb2cba86e6205838e4fa90ee82f
|
4
|
+
data.tar.gz: 3662c70c238edfcc3bbd3de47a6da63f9fa08d043106f3cc2093a8209317ff2e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c15dbff05ec3bdc18fe380d3913913522940a025d01d2bb283188d6baa0c1ccc3d708e07091ddc5f52c292ce37b79cf7462dbbd96a54ba2ce6c740e7bc777132
|
7
|
+
data.tar.gz: 7254d5b3cf91272d3d2a35b1a7e80739c5be47f5f6ff2e08d3ce4787eb398146c56ea098d86513097ba9f677b01aab298644b4c11213f5e68ea34afaf9e1e86e
|
data/CHANGELOG.md
CHANGED
@@ -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:
|
data/lib/fog/brightbox.rb
CHANGED
@@ -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
|
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.
|
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-
|
11
|
+
date: 2018-09-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fog-core
|