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 +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/aruba/matchers/base/message_indenter.rb +0 -1
- data/lib/aruba/processes/spawn_process.rb +2 -2
- data/lib/aruba/version.rb +1 -1
- metadata +5 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d2fbde24897343e351c380098a0eef63f3a648a7fe535b08acf07e7c09b3757
|
|
4
|
+
data.tar.gz: 23e3d481c4eae0bee6d53c57ce8beb5b7c888c45dbb75b12d5636613f8bbe01f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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])
|
|
@@ -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
|
-
|
|
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
|
-
|
|
231
|
+
File.read(@stderr_file.path)
|
|
232
232
|
end
|
|
233
233
|
end
|
|
234
234
|
|
data/lib/aruba/version.rb
CHANGED
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.
|
|
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:
|
|
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:
|
|
462
|
-
signing_key:
|
|
459
|
+
rubygems_version: 4.0.10
|
|
463
460
|
specification_version: 4
|
|
464
|
-
summary:
|
|
461
|
+
summary: Test command line applications with Cucumber, RSpec or Minitest
|
|
465
462
|
test_files: []
|