aruba 2.4.0 → 2.4.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: 355026fa14aea82eab3f58fd0f42702aeb67b9c925ae2582cf42b39b11c2e459
4
- data.tar.gz: c4275785c79d44fd5511dfb740eb42ee9459ad6a8aaea240f594a7aaca3f322a
3
+ metadata.gz: 7d2fbde24897343e351c380098a0eef63f3a648a7fe535b08acf07e7c09b3757
4
+ data.tar.gz: 23e3d481c4eae0bee6d53c57ce8beb5b7c888c45dbb75b12d5636613f8bbe01f
5
5
  SHA512:
6
- metadata.gz: cb0da11ceb2b6d01fc0b7d714b0e160126629b60c3b181469bab243be7adcd84c9764164fe67dfa216c8214368d91c19c7e4d67c6441cf3583f4355757ad26b9
7
- data.tar.gz: 75e9ff485d87d2551211187d7597836a275de7c70851071a0c819c8926a0cb4543ac2f228127dbd8cb66545582da613d7e1764c57870cbbe838127e7972a333e
6
+ metadata.gz: d5b6b7386d562d858581bc219f0ab747edb13e36e202a8868e6ab03ef62b49f3c6e4376775ee6fb30d6c2872408d63b9f5f99e1b653977d5ae5ded67914cd635
7
+ data.tar.gz: f5a0031cc12f1a1fa5318b81a86d079b66e6ee89f870189eac414e1ac42494a742a2c71dd2c3bfd99c50ce571d17a67576e382a6c63eae206aba5eb17a5596b7
data/CHANGELOG.md CHANGED
@@ -6,6 +6,16 @@ This project adheres to [Semantic Versioning][1].
6
6
 
7
7
  This document is formatted according to the principles of [Keep A CHANGELOG][2].
8
8
 
9
+ ## [2.4.1] / 2026-05-15
10
+
11
+ * Fix summary text in the gemspec [89dda45]
12
+ * Remove needless mangling of message from indenting helper ([#1015] by [mvz])
13
+ * Use File.read instead of Kernel.open ([#1016] by [mvz])
14
+
15
+ [89dda45]: https://github.com/cucumber/aruba/commit/89dda459fecc7aa88bbb8dca35ea47879543a93a
16
+ [#1015]: https://github.com/cucumber/aruba/pull/1015
17
+ [#1016]: https://github.com/cucumber/aruba/pull/1016
18
+
9
19
  ## [2.4.0] / 2026-05-02
10
20
 
11
21
  * Allow multiple arguments to xProcess#write ([#634] by [mvz])
@@ -10,7 +10,6 @@ module Aruba
10
10
  module_function
11
11
 
12
12
  def indent_multiline_message(message)
13
- message = message.sub(/\n+\z/, '')
14
13
  message.lines.map do |line|
15
14
  /\S/.match?(line) ? " #{line}" : line
16
15
  end.join
@@ -209,7 +209,7 @@ module Aruba
209
209
 
210
210
  wait_for_io opts.fetch(:wait_for_io, io_wait_timeout) do
211
211
  @process.stdout.flush
212
- open(@stdout_file.path).read
212
+ File.read(@stdout_file.path)
213
213
  end
214
214
  end
215
215
 
@@ -228,7 +228,7 @@ module Aruba
228
228
 
229
229
  wait_for_io opts.fetch(:wait_for_io, io_wait_timeout) do
230
230
  @process.stderr.flush
231
- open(@stderr_file.path).read
231
+ File.read(@stderr_file.path)
232
232
  end
233
233
  end
234
234
 
data/lib/aruba/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Aruba
4
- VERSION = '2.4.0'
4
+ VERSION = '2.4.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aruba
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aslak Hellesøy, Matt Wynne and other Aruba Contributors
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2026-05-02 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler
@@ -328,8 +327,8 @@ extensions: []
328
327
  extra_rdoc_files:
329
328
  - CHANGELOG.md
330
329
  - CONTRIBUTING.md
331
- - README.md
332
330
  - LICENSE
331
+ - README.md
333
332
  files:
334
333
  - CHANGELOG.md
335
334
  - CONTRIBUTING.md
@@ -439,7 +438,6 @@ metadata:
439
438
  documentation_uri: https://www.rubydoc.info/gems/aruba
440
439
  homepage_uri: https://github.com/cucumber/aruba
441
440
  source_code_uri: https://github.com/cucumber/aruba
442
- post_install_message:
443
441
  rdoc_options:
444
442
  - "--charset"
445
443
  - UTF-8
@@ -458,8 +456,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
458
456
  - !ruby/object:Gem::Version
459
457
  version: '0'
460
458
  requirements: []
461
- rubygems_version: 3.4.20
462
- signing_key:
459
+ rubygems_version: 4.0.10
463
460
  specification_version: 4
464
- summary: aruba-2.4.0
461
+ summary: Test command line applications with Cucumber, RSpec or Minitest
465
462
  test_files: []