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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b4b80a4ad000727e13f154cef131b4299d27eed0ed4f200586defa86c60d829
4
- data.tar.gz: 31a7c9a885fc3ada1ff8a66ae85a7400b56a0bcb17c1dca0ee9649eac56d7919
3
+ metadata.gz: c4f23739dbbe8891bbb0026f7fbf5bb6357cdcaf0c28bb2ea1a63626caa99c6f
4
+ data.tar.gz: 62c248b3cdd19972bd4bf53abc1d66bb7479c5f6281f5e84f56c9212b79bed4f
5
5
  SHA512:
6
- metadata.gz: 15a7df8729f641d566a5b69d388592cbe536177c165c4260954a8a23d57c735d3cb4af242ca958f85de79198b33ffecaaba4551d514e2674720f409f433e930b
7
- data.tar.gz: 27049a985faef5bd21a349feaece2480b70eba62b3ed253caf941e48e4af841f79797538e5ffaef78518da90ba13cd96a0db439e9d59b1363ba3cce254e7f991
6
+ metadata.gz: 663f90dca5e05f44a85c861191038bc4b4f4fa5f8306da00ebf2466db2423ac4ab12928cc30d00f855b06bb661c216ba173e09eb8d25fcc7b234da2dfd81df0e
7
+ data.tar.gz: 0e3320602a1555c41567d21c07947b7ad860ba1156659c3ebd5c2bdddb4108f43ad5400fc5cebefe0e7e8a47619ebc5fea0460b89be13258d1ce5bd25970c981
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.1] - 2024-05-16
4
+
5
+ ### Fixed
6
+
7
+ - Use `frozen_string_literal`.
8
+
3
9
  ## [0.2.0] - 2023-05-05
4
10
 
5
11
  ### Added
@@ -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)
@@ -1,3 +1,3 @@
1
1
  module Progeny
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
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.0
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: 2023-05-05 00:00:00.000000000 Z
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.4.10
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: []