henitai 0.1.6 → 0.1.7
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 +17 -1
- data/README.md +5 -0
- data/lib/henitai/integration.rb +2 -2
- data/lib/henitai/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0cdead9488bf4134ad58d6d920152df41ea0bd7de9a5073ed71975bba2da8d6
|
|
4
|
+
data.tar.gz: c57e3419807bdc599ddb741803895da2228a59df82bab8a03b15698de246d98f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8dac0f228eb54df57b00ff8a51e8147548fbd41bc0c2d09972868efef45ea30be5269f16fcc83f9616e71b8e011b676cc5914eb407f5ac3651455e481162c8e
|
|
7
|
+
data.tar.gz: 3bb1af3759153a8c9d806a3799180bfc69fffc80f555376f205d87a8c5073c0fd94dc12b40ceba0283f0ae227251b6ef11836e51259a372be8475bfcb95ba522
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.7] - 2026-04-14
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Committed integration smoke projects for RSpec and Minitest, runnable via
|
|
14
|
+
`bundle exec rake smoke:integration:all`, to exercise `henitai` against
|
|
15
|
+
small real projects that depend on the local source checkout
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Child-process stdout/stderr restoration after captured test runs now keeps
|
|
19
|
+
the standard streams usable, preventing passing mutant executions from being
|
|
20
|
+
misclassified because the child exited with a closed stdio handle
|
|
21
|
+
- Root `bundle exec rspec` no longer picks up the committed smoke fixture spec
|
|
22
|
+
files, and `spec/spec_helper.rb` no longer auto-requires support specs during
|
|
23
|
+
suite boot
|
|
24
|
+
|
|
10
25
|
## [0.1.6] - 2026-04-14
|
|
11
26
|
|
|
12
27
|
### Fixed
|
|
@@ -166,7 +181,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
166
181
|
- CLI critical path: `henitai run` now executes the full pipeline, supports `--since`, returns CI-friendly exit codes, and `henitai version` prints `Henitai::VERSION`
|
|
167
182
|
- RSpec per-test coverage output: `henitai/coverage_formatter` now writes `coverage/henitai_per_test.json`
|
|
168
183
|
|
|
169
|
-
[Unreleased]: https://github.com/martinotten/henitai/compare/v0.1.
|
|
184
|
+
[Unreleased]: https://github.com/martinotten/henitai/compare/v0.1.7...HEAD
|
|
185
|
+
[0.1.7]: https://github.com/martinotten/henitai/compare/v0.1.6...v0.1.7
|
|
170
186
|
[0.1.6]: https://github.com/martinotten/henitai/compare/v0.1.5...v0.1.6
|
|
171
187
|
[0.1.5]: https://github.com/martinotten/henitai/compare/v0.1.4...v0.1.5
|
|
172
188
|
[0.1.4]: https://github.com/martinotten/henitai/compare/v0.1.3...v0.1.4
|
data/README.md
CHANGED
|
@@ -162,11 +162,16 @@ git clone https://github.com/martinotten/henitai
|
|
|
162
162
|
cd henitai
|
|
163
163
|
bundle install
|
|
164
164
|
bundle exec rspec # run tests
|
|
165
|
+
bundle exec rake smoke:integration:all # run rspec/minitest integration smoke projects
|
|
165
166
|
bundle exec rubocop # lint
|
|
166
167
|
bundle exec henitai clean # remove stale generated report artifacts
|
|
167
168
|
bundle exec henitai run # dogfood
|
|
168
169
|
```
|
|
169
170
|
|
|
171
|
+
Framework integration smoke projects live under `spec/fixtures/integration_smoke/`
|
|
172
|
+
and exercise `henitai` against small RSpec and Minitest apps via the local path
|
|
173
|
+
dependency.
|
|
174
|
+
|
|
170
175
|
A Dev Container configuration is included (`.devcontainer/`) for VS Code with the official `ruby:4`
|
|
171
176
|
image, the Codex CLI, and RTK preinstalled. Codex support is bootstrapped with
|
|
172
177
|
`rtk init -g --codex --auto-patch` during container creation.
|
data/lib/henitai/integration.rb
CHANGED
|
@@ -78,8 +78,8 @@ module Henitai
|
|
|
78
78
|
def restore_child_output(output_files)
|
|
79
79
|
reopen_child_output_stream(stdout_stream, output_files[:original_stdout])
|
|
80
80
|
reopen_child_output_stream(stderr_stream, output_files[:original_stderr])
|
|
81
|
-
$stdout =
|
|
82
|
-
$stderr =
|
|
81
|
+
$stdout = stdout_stream
|
|
82
|
+
$stderr = stderr_stream
|
|
83
83
|
end
|
|
84
84
|
|
|
85
85
|
def reopen_child_output_stream(stream, original_stream)
|
data/lib/henitai/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: henitai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Otten
|
|
@@ -157,7 +157,7 @@ metadata:
|
|
|
157
157
|
changelog_uri: https://github.com/martinotten/henitai/blob/main/CHANGELOG.md
|
|
158
158
|
documentation_uri: https://github.com/martinotten/henitai/blob/main/README.md
|
|
159
159
|
homepage_uri: https://github.com/martinotten/henitai
|
|
160
|
-
source_code_uri: https://github.com/martinotten/henitai/tree/v0.1.
|
|
160
|
+
source_code_uri: https://github.com/martinotten/henitai/tree/v0.1.7
|
|
161
161
|
rubygems_mfa_required: 'true'
|
|
162
162
|
rdoc_options: []
|
|
163
163
|
require_paths:
|