fog-brightbox 0.6.0 → 0.6.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 +6 -0
- data/lib/fog/brightbox/models/compute/load_balancer.rb +3 -1
- data/lib/fog/brightbox/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52897a886916a22c81a1739e501b85f1c5cc31b9
|
4
|
+
data.tar.gz: de27f7575f275ef77bb7469996cd3dd57e93e826
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af4897d9093f4aa615f4250f0a5d33f07b5ecf0639cacb25c4972862c58f8017c4aaae2d05e46651e370471cd19810e48873017df191016fead34ebfdb7c0762
|
7
|
+
data.tar.gz: 862944dce4be95bdd31f6c9572ae024c16d61924b99db947eaeca644d8bbfae567b8d99826857411e9035f97be87ed925079d6b0ff0718abebd3671cd0870563
|
data/CHANGELOG.md
CHANGED
@@ -92,16 +92,18 @@ module Fog
|
|
92
92
|
attributes[:certificate_expires_at] = time_or_original(cert_metadata["expires_at"])
|
93
93
|
attributes[:certificate_issuer] = cert_metadata["issuer"]
|
94
94
|
attributes[:certificate_subject] = cert_metadata["subject"]
|
95
|
+
attributes[:certificate_enable_ssl3] = cert_metadata["sslv3"]
|
95
96
|
else
|
96
97
|
attributes[:certificate_valid_from] = nil
|
97
98
|
attributes[:certificate_expires_at] = nil
|
98
99
|
attributes[:certificate_issuer] = nil
|
99
100
|
attributes[:certificate_subject] = nil
|
101
|
+
attributes[:certificate_enable_ssl3] = nil
|
100
102
|
end
|
101
103
|
end
|
102
104
|
|
103
105
|
def ssl3?
|
104
|
-
attributes[:
|
106
|
+
!! attributes[:certificate_enable_ssl3]
|
105
107
|
end
|
106
108
|
|
107
109
|
private
|
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.6.
|
4
|
+
version: 0.6.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: 2014-10-
|
11
|
+
date: 2014-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fog-core
|