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 Feb 18, 2022
1 parent 80a1e8c commit f963639
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,5 @@ jobs:
- { '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.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_runtime_dependency 'actionview', '>= 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 f963639

Please sign in to comment.