Skip to content

Commit

Permalink
treewide: Remove Ruby 2.7 support (#68)
Browse files Browse the repository at this point in the history
This commit removes support for Ruby 2.7 given that its EOL was reached
on 2023-03-31.
  • Loading branch information
ethan-readyset authored Jan 16, 2024
1 parent 7b7938f commit 29671d9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1', '3.2']
ruby-version: ['3.0', '3.1', '3.2']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1', '3.2']
ruby-version: ['3.0', '3.1', '3.2']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ inherit_from:
- .rubocop_airbnb.yml

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.2
NewCops: disable

Style/StringLiterals:
Expand Down
2 changes: 1 addition & 1 deletion readyset.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
'SQL cache.'
spec.description = 'This gem provides a Rails adapter to the ReadySet SQL cache.'
spec.homepage = 'https://readyset.io'
spec.required_ruby_version = '>= 2.7.0'
spec.required_ruby_version = '>= 3.0'

spec.metadata['allowed_push_host'] = "TODO: Set to your gem server 'https://example.com'"

Expand Down

0 comments on commit 29671d9

Please sign in to comment.