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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e52861cd49b6672c8e07c36492af9e06ad51267a
4
- data.tar.gz: 3f8511a4b6e478f95cb1df5293f9e7ffe4bdd8cd
3
+ metadata.gz: 52897a886916a22c81a1739e501b85f1c5cc31b9
4
+ data.tar.gz: de27f7575f275ef77bb7469996cd3dd57e93e826
5
5
  SHA512:
6
- metadata.gz: fb2c36f4c703e0602025d94b2509f18e50859d916e68e5061bf43a9b5ffd92f826fd0baa554cd281516f07936adde58d2141c3d34c7de6ea01ff6cc3b6693bba
7
- data.tar.gz: e34c095c04b7ed30390110a88afa4dc3f626a409e9d11ce47517add0e256e8f0c627da833b7e6e5af67a7eb2e73715484d02cdc13b118d428b05d192cdc8f2ca
6
+ metadata.gz: af4897d9093f4aa615f4250f0a5d33f07b5ecf0639cacb25c4972862c58f8017c4aaae2d05e46651e370471cd19810e48873017df191016fead34ebfdb7c0762
7
+ data.tar.gz: 862944dce4be95bdd31f6c9572ae024c16d61924b99db947eaeca644d8bbfae567b8d99826857411e9035f97be87ed925079d6b0ff0718abebd3671cd0870563
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 0.6.1 / 2014-10-22
2
+
3
+ Bug fixes:
4
+
5
+ * Fixes reading from `Server#ssl3?`
6
+
1
7
  ### 0.6.0 / 2014-10-21
2
8
 
3
9
  Enhancements:
@@ -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[:sslv3]
106
+ !! attributes[:certificate_enable_ssl3]
105
107
  end
106
108
 
107
109
  private
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Brightbox
3
- VERSION = "0.6.0"
3
+ VERSION = "0.6.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.6.0
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-21 00:00:00.000000000 Z
11
+ date: 2014-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-core