Skip to content

Commit

Permalink
[FEATURE] Add support for Rails 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee committed Dec 17, 2021
1 parent b3a45f1 commit fddf3f3
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,15 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby:
- '2.6.8'
- '2.7.4'
- '3.0.2'
rails:
- '5.2'
- '6.0'
- '6.1'
include:
- { 'rails': '5.2', 'ruby': '2.6.9' }
- { 'rails': '5.2', 'ruby': '2.7.5' }
- { 'rails': '5.2', 'ruby': '3.0.3' }
- { 'rails': '6.0', 'ruby': '2.6.9' }
- { 'rails': '6.0', 'ruby': '2.7.5' }
- { 'rails': '6.0', 'ruby': '3.0.3' }
- { 'rails': '6.1', 'ruby': '2.6.9' }
- { 'rails': '6.1', 'ruby': '2.7.5' }
- { 'rails': '6.1', 'ruby': '3.0.3' }
- { 'rails': '7.0', 'ruby': '2.7.5' }
- { 'rails': '7.0', 'ruby': '3.0.3' }
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ about why a change log is important.
## x.y.z

### Added
- Add support for Rails 7.0 (#131)

### Changed

Expand Down
7 changes: 7 additions & 0 deletions gemfiles/Gemfile.rails-7.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 7.0.0'

gemspec path: '../'
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', '>= 5.2.0', '< 6.2'
s.add_runtime_dependency 'actionview', '>= 5.2.0', '< 7.1'

s.add_development_dependency 'rake', '>= 10.3.2'
s.add_development_dependency 'shoulda'
Expand Down

0 comments on commit fddf3f3

Please sign in to comment.