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 Mar 3, 2022
1 parent 656d80a commit 9310234
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,6 @@ jobs:
- { 'rails': '6.1', 'ruby': '2.7.5' }
- { 'rails': '6.1', 'ruby': '3.0.3' }
- { 'rails': '6.1', 'ruby': '3.1.1' }
- { 'rails': '7.0', 'ruby': '2.7.5' }
- { 'rails': '7.0', 'ruby': '3.0.3' }
- { 'rails': '7.0', 'ruby': '3.1.1' }
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)
- Add support for Ruby 3.1 (#143)

### 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.2.2'

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_dependency 'rails', '>= 5.2.0', '< 7.1'

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

0 comments on commit 9310234

Please sign in to comment.