Skip to content

Commit

Permalink
[TASK] Drop support for Ruby 2.7 (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee authored Apr 7, 2023
1 parent 719fd0d commit 3100bcd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,19 +64,15 @@ jobs:
fail-fast: false
matrix:
include:
- { 'rails': '5.2', 'ruby': '2.7.8' }
- { 'rails': '5.2', 'ruby': '3.0.6' }
- { 'rails': '5.2', 'ruby': '3.1.4' }
- { 'rails': '5.2', 'ruby': '3.2.2' }
- { 'rails': '6.0', 'ruby': '2.7.8' }
- { 'rails': '6.0', 'ruby': '3.0.6' }
- { 'rails': '6.0', 'ruby': '3.1.4' }
- { 'rails': '6.0', 'ruby': '3.2.2' }
- { 'rails': '6.1', 'ruby': '2.7.8' }
- { 'rails': '6.1', 'ruby': '3.0.6' }
- { 'rails': '6.1', 'ruby': '3.1.4' }
- { 'rails': '6.1', 'ruby': '3.2.2' }
- { 'rails': '7.0', 'ruby': '2.7.8' }
- { 'rails': '7.0', 'ruby': '3.0.6' }
- { 'rails': '7.0', 'ruby': '3.1.4' }
- { 'rails': '7.0', 'ruby': '3.2.2' }
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:
- rubocop-rails

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
TargetRailsVersion: 5.2
NewCops: enable

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ about why a change log is important.
### Deprecated

### Removed
- Drop support for Ruby 2.7 (#163)

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion page_title_helper.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.summary = 'Simple, internationalized and DRY page titles and headings for Rails.'
s.description = 'Simple, internationalized and DRY page titles and headings for Rails.'

s.required_ruby_version = '>= 2.7.0'
s.required_ruby_version = '>= 3.0.0'

s.authors = ['Lukas Westermann']
s.email = ['[email protected]']
Expand Down

0 comments on commit 3100bcd

Please sign in to comment.