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 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