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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0768490eaa9eb879f69f015c1d8f49c0085ba0b3
4
- data.tar.gz: 8cb3fb12ffb33ef3830fcd2241b42b282085f2fd
3
+ metadata.gz: d2ef229476828aed3a6f31de68df08fd63c4ab68
4
+ data.tar.gz: 657324791c88fb759a394f5f3df239e7dd1b7aad
5
5
  SHA512:
6
- metadata.gz: 5f01c0def2bc580f7f638cc1c62e19a960226ed8d3b336eddf4bf2e00c7454ea182076aa0d5d9eafd1ff4abf5271e7a35b9be2c8514983e7b72c0af0cba78bac
7
- data.tar.gz: abdc6c693166648ecb65b6f1245ea9e9dc3cb0c8de73f67c65ac1ad39942855627272eeae70b0de253c4a29daffe358dcf95dc723e4963bf105a9d5b633e3369
6
+ metadata.gz: 1be63b3498bc587b88af96dac47a96179c11299a4075efa84634e478e7edb73e9301e21b08869273f43b60785507abe140b7c8c9821f60f1b5efbefb1a4dc759
7
+ data.tar.gz: 4143932e28bb58aafc887a3faba3322b662562649dc37c6f9663e884c5cfdaa5e52abf079bc76d437367ad4c794fa52a79079f6ee13348812abf9d304ac57993
data/RELEASE_NOTES.md CHANGED
@@ -1,7 +1,13 @@
1
+ ## v0.63.1
2
+
3
+ * Put SshOutputReader in TrickBag::Networking module.
4
+
5
+
1
6
  ## v0.63.0
2
7
 
3
8
  * Add SshOutputReader.
4
9
 
10
+
5
11
  ## v0.62.1
6
12
 
7
13
  * Reinstated thread.kill in Timing.try_with_timeout.
@@ -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
@@ -1,3 +1,3 @@
1
1
  module TrickBag
2
- VERSION = '0.63.0'
2
+ VERSION = '0.63.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trick_bag
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.63.0
4
+ version: 0.63.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keith Bennett