evilution 0.23.0 → 0.24.0

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.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/.beads/interactions.jsonl +5 -0
  3. data/CHANGELOG.md +16 -0
  4. data/README.md +1 -0
  5. data/lib/evilution/cli/parser/command_extractor.rb +77 -0
  6. data/lib/evilution/cli/parser/file_args.rb +41 -0
  7. data/lib/evilution/cli/parser/options_builder.rb +103 -0
  8. data/lib/evilution/cli/parser/stdin_reader.rb +28 -0
  9. data/lib/evilution/cli/parser.rb +27 -196
  10. data/lib/evilution/config.rb +14 -1
  11. data/lib/evilution/integration/base.rb +11 -57
  12. data/lib/evilution/integration/minitest.rb +16 -3
  13. data/lib/evilution/integration/rspec.rb +19 -7
  14. data/lib/evilution/isolation/fork.rb +1 -0
  15. data/lib/evilution/isolation/in_process.rb +1 -0
  16. data/lib/evilution/reporter/cli.rb +2 -1
  17. data/lib/evilution/reporter/html/assets/style.css +68 -0
  18. data/lib/evilution/reporter/html/baseline_keys.rb +28 -0
  19. data/lib/evilution/reporter/html/diff_formatter.rb +27 -0
  20. data/lib/evilution/reporter/html/escape.rb +12 -0
  21. data/lib/evilution/reporter/html/namespace.rb +11 -0
  22. data/lib/evilution/reporter/html/report.rb +68 -0
  23. data/lib/evilution/reporter/html/section.rb +21 -0
  24. data/lib/evilution/reporter/html/sections/baseline_comparison.rb +46 -0
  25. data/lib/evilution/reporter/html/sections/error_details.rb +30 -0
  26. data/lib/evilution/reporter/html/sections/error_entry.rb +22 -0
  27. data/lib/evilution/reporter/html/sections/file_section.rb +47 -0
  28. data/lib/evilution/reporter/html/sections/header.rb +29 -0
  29. data/lib/evilution/reporter/html/sections/mutation_map.rb +32 -0
  30. data/lib/evilution/reporter/html/sections/summary_cards.rb +11 -0
  31. data/lib/evilution/reporter/html/sections/survived_details.rb +35 -0
  32. data/lib/evilution/reporter/html/sections/survived_entry.rb +36 -0
  33. data/lib/evilution/reporter/html/sections/truncation_notice.rb +17 -0
  34. data/lib/evilution/reporter/html/sections.rb +4 -0
  35. data/lib/evilution/reporter/html/stylesheet.rb +14 -0
  36. data/lib/evilution/reporter/html/templates/baseline_comparison.html.erb +8 -0
  37. data/lib/evilution/reporter/html/templates/error_details.html.erb +6 -0
  38. data/lib/evilution/reporter/html/templates/error_entry.html.erb +10 -0
  39. data/lib/evilution/reporter/html/templates/file_section.html.erb +9 -0
  40. data/lib/evilution/reporter/html/templates/header.html.erb +4 -0
  41. data/lib/evilution/reporter/html/templates/mutation_map.html.erb +6 -0
  42. data/lib/evilution/reporter/html/templates/report.html.erb +17 -0
  43. data/lib/evilution/reporter/html/templates/summary_cards.html.erb +23 -0
  44. data/lib/evilution/reporter/html/templates/survived_details.html.erb +21 -0
  45. data/lib/evilution/reporter/html/templates/survived_entry.html.erb +8 -0
  46. data/lib/evilution/reporter/html/templates/truncation_notice.html.erb +1 -0
  47. data/lib/evilution/reporter/html.rb +11 -390
  48. data/lib/evilution/reporter/json.rb +12 -8
  49. data/lib/evilution/result/mutation_result.rb +5 -1
  50. data/lib/evilution/result/summary.rb +9 -1
  51. data/lib/evilution/runner/baseline_runner.rb +71 -0
  52. data/lib/evilution/runner/diagnostics.rb +105 -0
  53. data/lib/evilution/runner/isolation_resolver.rb +134 -0
  54. data/lib/evilution/runner/mutation_executor.rb +255 -0
  55. data/lib/evilution/runner/mutation_planner.rb +126 -0
  56. data/lib/evilution/runner/report_publisher.rb +60 -0
  57. data/lib/evilution/runner/subject_pipeline.rb +121 -0
  58. data/lib/evilution/runner.rb +57 -694
  59. data/lib/evilution/version.rb +1 -1
  60. metadata +42 -1
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Evilution
4
- VERSION = "0.23.0"
4
+ VERSION = "0.24.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evilution
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis Kiselev
@@ -114,6 +114,10 @@ files:
114
114
  - lib/evilution/cli/dispatcher.rb
115
115
  - lib/evilution/cli/parsed_args.rb
116
116
  - lib/evilution/cli/parser.rb
117
+ - lib/evilution/cli/parser/command_extractor.rb
118
+ - lib/evilution/cli/parser/file_args.rb
119
+ - lib/evilution/cli/parser/options_builder.rb
120
+ - lib/evilution/cli/parser/stdin_reader.rb
117
121
  - lib/evilution/cli/printers.rb
118
122
  - lib/evilution/cli/printers/environment.rb
119
123
  - lib/evilution/cli/printers/session_detail.rb
@@ -244,6 +248,36 @@ files:
244
248
  - lib/evilution/reporter.rb
245
249
  - lib/evilution/reporter/cli.rb
246
250
  - lib/evilution/reporter/html.rb
251
+ - lib/evilution/reporter/html/assets/style.css
252
+ - lib/evilution/reporter/html/baseline_keys.rb
253
+ - lib/evilution/reporter/html/diff_formatter.rb
254
+ - lib/evilution/reporter/html/escape.rb
255
+ - lib/evilution/reporter/html/namespace.rb
256
+ - lib/evilution/reporter/html/report.rb
257
+ - lib/evilution/reporter/html/section.rb
258
+ - lib/evilution/reporter/html/sections.rb
259
+ - lib/evilution/reporter/html/sections/baseline_comparison.rb
260
+ - lib/evilution/reporter/html/sections/error_details.rb
261
+ - lib/evilution/reporter/html/sections/error_entry.rb
262
+ - lib/evilution/reporter/html/sections/file_section.rb
263
+ - lib/evilution/reporter/html/sections/header.rb
264
+ - lib/evilution/reporter/html/sections/mutation_map.rb
265
+ - lib/evilution/reporter/html/sections/summary_cards.rb
266
+ - lib/evilution/reporter/html/sections/survived_details.rb
267
+ - lib/evilution/reporter/html/sections/survived_entry.rb
268
+ - lib/evilution/reporter/html/sections/truncation_notice.rb
269
+ - lib/evilution/reporter/html/stylesheet.rb
270
+ - lib/evilution/reporter/html/templates/baseline_comparison.html.erb
271
+ - lib/evilution/reporter/html/templates/error_details.html.erb
272
+ - lib/evilution/reporter/html/templates/error_entry.html.erb
273
+ - lib/evilution/reporter/html/templates/file_section.html.erb
274
+ - lib/evilution/reporter/html/templates/header.html.erb
275
+ - lib/evilution/reporter/html/templates/mutation_map.html.erb
276
+ - lib/evilution/reporter/html/templates/report.html.erb
277
+ - lib/evilution/reporter/html/templates/summary_cards.html.erb
278
+ - lib/evilution/reporter/html/templates/survived_details.html.erb
279
+ - lib/evilution/reporter/html/templates/survived_entry.html.erb
280
+ - lib/evilution/reporter/html/templates/truncation_notice.html.erb
247
281
  - lib/evilution/reporter/json.rb
248
282
  - lib/evilution/reporter/progress_bar.rb
249
283
  - lib/evilution/reporter/suggestion.rb
@@ -253,6 +287,13 @@ files:
253
287
  - lib/evilution/result/mutation_result.rb
254
288
  - lib/evilution/result/summary.rb
255
289
  - lib/evilution/runner.rb
290
+ - lib/evilution/runner/baseline_runner.rb
291
+ - lib/evilution/runner/diagnostics.rb
292
+ - lib/evilution/runner/isolation_resolver.rb
293
+ - lib/evilution/runner/mutation_executor.rb
294
+ - lib/evilution/runner/mutation_planner.rb
295
+ - lib/evilution/runner/report_publisher.rb
296
+ - lib/evilution/runner/subject_pipeline.rb
256
297
  - lib/evilution/session.rb
257
298
  - lib/evilution/session/diff.rb
258
299
  - lib/evilution/session/store.rb