From ed964e289dfa422dc206fd74d72ac62727be4ab6 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Sat, 7 Feb 2026 15:20:20 -0500 Subject: [PATCH 1/2] Add CHANGELOG.md to track changes --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c7cbef9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## Unreleased + +### Changes + +- Require minimum ruby version 3.2 +- Require minimum rspec version 3.8 +- Require minimum cucumber version 10.0 +- Allow ruby version 4.0 From 465e0d05677ecb16ae68ed27f4386ebfa6e52296 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Tue, 10 Feb 2026 09:58:05 -0500 Subject: [PATCH 2/2] Misc typo fixes --- lib/flatware/rspec/checkpoint.rb | 2 +- lib/flatware/rspec/job_builder.rb | 2 +- spec/flatware/sink_spec.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/flatware/rspec/checkpoint.rb b/lib/flatware/rspec/checkpoint.rb index 72e1b3b..c98e300 100644 --- a/lib/flatware/rspec/checkpoint.rb +++ b/lib/flatware/rspec/checkpoint.rb @@ -6,7 +6,7 @@ module Flatware module RSpec ## - # Marshalable container for the run details from a worker. + # Marshallable container for the run details from a worker. # Can be added to other checkpoints to create a final run summary. class Checkpoint extend Forwardable diff --git a/lib/flatware/rspec/job_builder.rb b/lib/flatware/rspec/job_builder.rb index e46bc0a..1ae9756 100644 --- a/lib/flatware/rspec/job_builder.rb +++ b/lib/flatware/rspec/job_builder.rb @@ -6,7 +6,7 @@ module Flatware module RSpec # groups spec files into one job per worker. # reads from persisted example statuses, if available, - # and attempts to ballence the jobs accordingly. + # and attempts to balance the jobs accordingly. class JobBuilder extend Forwardable diff --git a/spec/flatware/sink_spec.rb b/spec/flatware/sink_spec.rb index b4f24e7..ea6010e 100644 --- a/spec/flatware/sink_spec.rb +++ b/spec/flatware/sink_spec.rb @@ -32,7 +32,7 @@ end context 'there is no work' do - it 'sumarizes' do + it 'summarizes' do server = described_class::Server.new jobs: [], **defaults server.ready(1) expect(formatter).to have_received :summarize