progeny 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/lib/progeny/command.rb +2 -1
- data/lib/progeny/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c4f23739dbbe8891bbb0026f7fbf5bb6357cdcaf0c28bb2ea1a63626caa99c6f
|
4
|
+
data.tar.gz: 62c248b3cdd19972bd4bf53abc1d66bb7479c5f6281f5e84f56c9212b79bed4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 663f90dca5e05f44a85c861191038bc4b4f4fa5f8306da00ebf2466db2423ac4ab12928cc30d00f855b06bb661c216ba173e09eb8d25fcc7b234da2dfd81df0e
|
7
|
+
data.tar.gz: 0e3320602a1555c41567d21c07947b7ad860ba1156659c3ebd5c2bdddb4108f43ad5400fc5cebefe0e7e8a47619ebc5fea0460b89be13258d1ce5bd25970c981
|
data/CHANGELOG.md
CHANGED
data/lib/progeny/command.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
module Progeny
|
2
3
|
# Progeny::Command includes logic for executing child processes and
|
3
4
|
# reading/writing from their standard input, output, and error streams. It's
|
@@ -228,7 +229,7 @@ module Progeny
|
|
228
229
|
# exceeds the amount specified by the max argument.
|
229
230
|
def read_and_write(input, stdin, stdout, stderr, timeout=nil, max=nil)
|
230
231
|
max = nil if max && max <= 0
|
231
|
-
@out, @err = '', ''
|
232
|
+
@out, @err = +'', +''
|
232
233
|
|
233
234
|
# force all string and IO encodings to BINARY under 1.9 for now
|
234
235
|
if @out.respond_to?(:force_encoding) and stdin.respond_to?(:set_encoding)
|
data/lib/progeny/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: progeny
|
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
|
- Luan Vieira
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-05-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: minitest
|
@@ -59,7 +59,7 @@ metadata:
|
|
59
59
|
homepage_uri: https://github.com/luanzeba/progeny
|
60
60
|
source_code_uri: https://github.com/luanzeba/progeny
|
61
61
|
changelog_uri: https://github.com/luanzeba/progeny/blob/main/CHANGELOG.md
|
62
|
-
post_install_message:
|
62
|
+
post_install_message:
|
63
63
|
rdoc_options: []
|
64
64
|
require_paths:
|
65
65
|
- lib
|
@@ -74,8 +74,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
requirements: []
|
77
|
-
rubygems_version: 3.
|
78
|
-
signing_key:
|
77
|
+
rubygems_version: 3.0.3.1
|
78
|
+
signing_key:
|
79
79
|
specification_version: 4
|
80
80
|
summary: A process spawn wrapper with a nice interface and extra options.
|
81
81
|
test_files: []
|