rspec-system 2.7.1 → 2.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/CHANGELOG.md +14 -0
- data/lib/rspec-system/node_set/base.rb +1 -1
- data/rspec-system.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZWFkNDA1YWE4ZWU1NjZlZDY5YjM2YTI3MDY1YzRhMmQxNThjNGIxYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MGMxOGNjMzg5ZDdlZTk0ODE3ZTUxOGM1MTJiZWYwZTEyNzVlNGEzNg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MjFmNjQ5NDE3OTkwYjFkYzkwYmM4ZGM4MDM5MmYwZGNhZjIxZDUzNDQyZDYz
|
10
|
+
ZjE2NzVhNWY0ZWUxNmQ3OGU2OWM1NzYyZDU2ZWZiMjc2YWFjNmEyZWJhOWQw
|
11
|
+
ZGMxNjhiNTU0YzlhZjJmNDMyM2RmODA4ODMzMDg2MzhhNzJlZWQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MDhjNTNiNDZhMGJhMjFhMzA0MDNmMWIzMWYwY2YxOTBlYzI1Nzk3ZWNiMjlm
|
14
|
+
NDNlZTdjNjVmZmVhNDBkMjgwMDA2NDFjMzU4NjI0YmMxNmIxYzEwNDdjZmQ1
|
15
|
+
YmI3NTljYjFhMjFkNzk2ZmZhMzI3MzcxZmZjMmFiZTZhMDY4NzU=
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
2.7.2
|
2
|
+
=====
|
3
|
+
|
4
|
+
This bug fixes ensures all SocketErrors for SSH are caught and retried.
|
5
|
+
|
6
|
+
It also fixes the last release whereby Net::SSH::Exception was accidentally
|
7
|
+
removed at release time.
|
8
|
+
|
9
|
+
#### Detailed Changes
|
10
|
+
|
11
|
+
* rescue and retry ssh on SocketError and Net::SSH::Exception (Johan Haals)
|
12
|
+
|
13
|
+
-------------------------------
|
14
|
+
|
1
15
|
2.7.1
|
2
16
|
=====
|
3
17
|
|
@@ -216,7 +216,7 @@ module RSpecSystem
|
|
216
216
|
output << bold(color("localhost$", :green)) << " ssh -l #{opts[:user]} #{opts[:host]}\n"
|
217
217
|
Net::SSH.start(opts[:host], opts[:user], opts[:net_ssh_options])
|
218
218
|
end
|
219
|
-
rescue Timeout::Error, SystemCallError => e
|
219
|
+
rescue Timeout::Error, SystemCallError, Net::SSH::Exception, SocketError => e
|
220
220
|
tries += 1
|
221
221
|
output << e.message << "\n"
|
222
222
|
if tries < ssh_tries
|
data/rspec-system.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-system
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ken Barber
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|