trick_bag 0.63.0 → 0.63.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/RELEASE_NOTES.md +6 -0
- data/lib/trick_bag/networking/ssh_output_reader.rb +7 -1
- data/lib/trick_bag/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2ef229476828aed3a6f31de68df08fd63c4ab68
|
|
4
|
+
data.tar.gz: 657324791c88fb759a394f5f3df239e7dd1b7aad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1be63b3498bc587b88af96dac47a96179c11299a4075efa84634e478e7edb73e9301e21b08869273f43b60785507abe140b7c8c9821f60f1b5efbefb1a4dc759
|
|
7
|
+
data.tar.gz: 4143932e28bb58aafc887a3faba3322b662562649dc37c6f9663e884c5cfdaa5e52abf079bc76d437367ad4c794fa52a79079f6ee13348812abf9d304ac57993
|
data/RELEASE_NOTES.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
require 'net/ssh'
|
|
2
2
|
|
|
3
|
+
module TrickBag
|
|
4
|
+
module Networking
|
|
5
|
+
|
|
6
|
+
|
|
3
7
|
# Runs an ssh command, collecting the stdout and stderr produced by it.
|
|
4
8
|
# Optionally a predicate can be specified that, when called with the
|
|
5
9
|
# instance of this class, returns true to close
|
|
@@ -154,4 +158,6 @@ echo 4'
|
|
|
154
158
|
# .set_exit_predicate(has_3_lines))
|
|
155
159
|
|
|
156
160
|
# run_reader(SshOutputReader.new('localhost', command))
|
|
157
|
-
end
|
|
161
|
+
end
|
|
162
|
+
end
|
|
163
|
+
end
|
data/lib/trick_bag/version.rb
CHANGED