You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Switch the project-root path check in UselessResultsRemover from `=~`
to `match?` (real boolean, skips `$~` capture) and rebuild the prefix
regex with `chomp + append` rather than a mutating `+= unless`. Rewrite
`ResultAdapter#adapt` as a `to_h` block over the input hash with an
`adapt_one` helper, separating the pre-0.18 array-shape path from the
modern hash-shape path.
Replace `!ENV.fetch("NAME", nil).nil?` with `ENV.key?("NAME")` across
the parallel-adapter detection paths, fold the double `key?` check in
`Profiles#fetch_proc` into one, read each env var once in
`CommandGuesser#parallel_data`, and replace the manual `each` plus
early `return` in `cli/coverage.rb`'s `lookup` with `Hash#find`. All
behavior-preserving.
0 commit comments