Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove support for Ruby 2.7 #119

Merged
merged 1 commit into from
Feb 19, 2024
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
17 changes: 8 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,17 @@ jobs:
strategy:
matrix:
ruby:
- 2.7
- '3.0'
- 3.1
- '3.1'
gemfile:
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 3.11
- 3.12
- '3.11'
- '3.12'
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rspec-${{ matrix.gemfile }}.gemfile
steps:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inherit_gem:
standard: config/base.yml

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
NewCops: enable
Exclude:
- 'bin/*' # don't worry about binstubs
Expand Down
5 changes: 3 additions & 2 deletions rspec-abq.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ require_relative "lib/rspec/abq/version"
Gem::Specification.new do |spec|
spec.name = "rspec-abq"
spec.version = RSpec::Abq::VERSION
spec.authors = ["Ayaz Hafiz", "Michael Glass"]
spec.email = ["[email protected]", "me@rwx.com"]
spec.authors = ["rwx", "Ayaz Hafiz", "Michael Glass"]
spec.email = ["support@rwx.com"]
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"

spec.summary = "RSpec::Abq allows for parallel rspec runs using abq"
spec.description = "RSpec::Abq is an rspec plugin that replaces its ordering with one that is controlled by abq. It allows for parallelization of rspec on a single machine or across multiple workers."
Expand Down
Loading