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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a9bb3923bfa06aa75bb23e8e58eebfcde950a31889ecbd53cac33f374be8cb45
4
- data.tar.gz: 182affc0d3c950229c1507d1b3b5a32ed3857b04a9536c8848b056c179956d0e
3
+ metadata.gz: e0cdead9488bf4134ad58d6d920152df41ea0bd7de9a5073ed71975bba2da8d6
4
+ data.tar.gz: c57e3419807bdc599ddb741803895da2228a59df82bab8a03b15698de246d98f
5
5
  SHA512:
6
- metadata.gz: c4fd4c134c4dc11d68c1571bb0a1fab69b96d1c23332c30f47fe6077be9ca54208d092ab1a87e8ed22f6b1e6c26150998c9c187cb19c9364e4b7897808993f49
7
- data.tar.gz: 47939f9df02863715ba38f2f0120cad56cba5dd0fa7257c186e325ed371830352f929bb3786723274677360d80fc67754368b55312f5c5279ddd4c57f8c620aa
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.6...HEAD
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.
@@ -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 = output_files[:original_stdout]
82
- $stderr = output_files[:original_stderr]
81
+ $stdout = stdout_stream
82
+ $stderr = stderr_stream
83
83
  end
84
84
 
85
85
  def reopen_child_output_stream(stream, original_stream)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Henitai
4
- VERSION = "0.1.6"
4
+ VERSION = "0.1.7"
5
5
  end
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.6
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.6
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: