Skip to content

Commit

Permalink
Remove support for Ruby 2.7 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-manges authored Feb 19, 2024
1 parent 90eebf7 commit 423417c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
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

0 comments on commit 423417c

Please sign in to comment.