briandunn / flatware

A parallel test runner for RSpec and Cucumber with pretty output
MIT License
256 stars 35 forks source link

Add support for ruby 3.3 #76

Closed a666 closed 5 months ago

a666 commented 5 months ago

Adds CI tests for missing rspecs (11, 12, 13). Adds CI tests for ruby 3.3 . Allows the use of latest versions for dev dependencies (except aruba (that depends on cucumber) because it requires testing code changes). Removes the bundler lock files from the appraisals because using a modern bundler (that sets "bundled by") kills CI on old ruby versions (anything older than ruby 3.0). Adds racc dependency so tests work on ruby3.3 as specified in https://github.com/briandunn/flatware/pull/74#issuecomment-1894382759 . Rubocop config was updated, running rubocop -A with NewCops: enable on codebase only seems to modify spec files. Only 2 exceptions: Gemspec/RequiredRubyVersion feels bugged (unless I'm stupid) and Gemspec/RequireMFA should be enabled (by removing the whole section) if maintainer desires.

Closes #75.

a666 commented 5 months ago

Ready for review, I can remove or modify anything you don't like, no problem.

briandunn commented 5 months ago

Hey @a666! thanks so much for all this work. Going through it now and everything looks awesome so far.