ruby-sslyze 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ChangeLog.md +6 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/lib/sslyze/target.rb +10 -3
- data/lib/sslyze/version.rb +1 -1
- data/lib/sslyze/xml.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c04db52b8cef3f43b85dc0eeabd6d54ea8677059
|
4
|
+
data.tar.gz: 945e8f92174305403a57fedbaee3f0e8aef1241b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6c8c76320828ed9b82cc0f512cf07760d14092730acdb5e07e6ff1d0efdcc822b3f9f21904fd5ffd509d804ab3d845a30a2904f9e22e3f6a0288b55f9d423f2
|
7
|
+
data.tar.gz: b8ed037b913ea17bd7f2c583f2e9bd09eb28f4fe3afb53f2ee7e261b61d1e5680241df8b64a5c6b10699b4d77eeecb74e4aea89fd5b80aa30e7a20330e222690
|
data/ChangeLog.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
### 0.2.1 / 2017-01-13
|
2
|
+
|
3
|
+
* Fix file descriptor leak in {SSLyze::XML.open} by using
|
4
|
+
`File.open(path) { |file| ... }` instead of `File.new(path)`, which keeps the
|
5
|
+
file descriptor open until GC collects the `File` instance.
|
6
|
+
|
1
7
|
### 0.2.0 / 2016-08-16
|
2
8
|
|
3
9
|
* Requires sslyze 0.12.x.
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
data/lib/sslyze/target.rb
CHANGED
@@ -199,7 +199,8 @@ module SSLyze
|
|
199
199
|
# @return [Enumerator]
|
200
200
|
# If a no block was given, an Enumerator will be returned.
|
201
201
|
#
|
202
|
-
# @see
|
202
|
+
# @see #sslv2
|
203
|
+
# @see #sslv3
|
203
204
|
#
|
204
205
|
def each_ssl_protocol
|
205
206
|
return enum_for(__method__) unless block_given?
|
@@ -229,7 +230,9 @@ module SSLyze
|
|
229
230
|
# @return [Enumerator]
|
230
231
|
# If a no block was given, an Enumerator will be returned.
|
231
232
|
#
|
232
|
-
# @see
|
233
|
+
# @see #tlsv1
|
234
|
+
# @see #tlsv1_1
|
235
|
+
# @see #tlsv1_2
|
233
236
|
#
|
234
237
|
def each_tls_protocol
|
235
238
|
return enum_for(__method__) unless block_given?
|
@@ -260,7 +263,11 @@ module SSLyze
|
|
260
263
|
# @return [Enumerator]
|
261
264
|
# If a no block was given, an Enumerator will be returned.
|
262
265
|
#
|
263
|
-
# @see
|
266
|
+
# @see #sslv2
|
267
|
+
# @see #sslv3
|
268
|
+
# @see #tlsv1
|
269
|
+
# @see #tlsv1_1
|
270
|
+
# @see #tlsv1_2
|
264
271
|
#
|
265
272
|
def each_protocol(&block)
|
266
273
|
return enum_for(__method__) unless block
|
data/lib/sslyze/version.rb
CHANGED
data/lib/sslyze/xml.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-sslyze
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hal Brodigan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rprogram
|
@@ -140,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
140
|
requirements:
|
141
141
|
- sslyze 0.12.x
|
142
142
|
rubyforge_project:
|
143
|
-
rubygems_version: 2.
|
143
|
+
rubygems_version: 2.5.2
|
144
144
|
signing_key:
|
145
145
|
specification_version: 4
|
146
146
|
summary: Ruby interface to sslyze
|