Skip to content

Commit

Permalink
[TASK] Drop support for Rails 6.0 (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshRpowell authored Oct 6, 2023
1 parent 4c1f1fc commit 463c90b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 13 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
- name: 'Run RuboCop'
run: |
bundle exec rubocop Gemfile \
gemfiles/Gemfile.rails-6.0 \
gemfiles/Gemfile.rails-6.1 gemfiles/Gemfile.rails-7.0 gemfiles/Gemfile.rails-7.1 \
lib/ test/ Rakefile
Expand Down Expand Up @@ -65,9 +64,6 @@ jobs:
fail-fast: false
matrix:
include:
- { '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': '3.0.6' }
- { 'rails': '6.1', 'ruby': '3.1.4' }
- { 'rails': '6.1', 'ruby': '3.2.2' }
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require:

AllCops:
TargetRubyVersion: 3.0
TargetRailsVersion: 6.0
TargetRailsVersion: 6.1
NewCops: enable

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

### Removed
- Drop support for Rails 6.0 (#168)
- Drop support for Rails 5.2 (#164)
- Drop support for Ruby 2.7 (#163)

Expand Down
7 changes: 0 additions & 7 deletions gemfiles/Gemfile.rails-6.0

This file was deleted.

2 changes: 1 addition & 1 deletion page_title_helper.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |s|

s.license = 'MIT'

s.add_dependency 'rails', '>= 6.0.0', '< 7.2'
s.add_dependency 'rails', '>= 6.1.0', '< 7.2'

s.add_development_dependency 'rake', '~> 13.0.6'
s.add_development_dependency 'rubocop', '~> 1.56.4'
Expand Down

0 comments on commit 463c90b

Please sign in to comment.