Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion lib/flatware/rspec/checkpoint.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/flatware/rspec/job_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion spec/flatware/sink_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading