Skip to content

Commit

Permalink
[FEATURE] Add support for Rails 7.2 (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
n-rodriguez authored Aug 12, 2024
1 parent 718ecb5 commit 4606b1a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: 'Run RuboCop'
run: |
bundle exec rubocop Gemfile \
gemfiles/Gemfile.rails-6.1 gemfiles/Gemfile.rails-7.0 gemfiles/Gemfile.rails-7.1 \
gemfiles/Gemfile.rails-6.1 gemfiles/Gemfile.rails-7.0 gemfiles/Gemfile.rails-7.1 gemfiles/Gemfile.rails-7.2 \
lib/ test/ Rakefile
test:
Expand Down Expand Up @@ -64,3 +64,6 @@ jobs:
- { 'rails': '7.1', 'ruby': '3.1.6' }
- { 'rails': '7.1', 'ruby': '3.2.5' }
- { 'rails': '7.1', 'ruby': '3.3.4' }
- { 'rails': '7.2', 'ruby': '3.1.6' }
- { 'rails': '7.2', 'ruby': '3.2.5' }
- { 'rails': '7.2', 'ruby': '3.3.4' }
7 changes: 7 additions & 0 deletions gemfiles/Gemfile.rails-7.2
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.2.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', '>= 6.1.0', '< 7.2'
s.add_dependency 'rails', '>= 6.1.0', '< 7.3'

s.add_development_dependency 'rake', '~> 13.2.1'
s.add_development_dependency 'rubocop', '~> 1.64.1'
Expand Down

0 comments on commit 4606b1a

Please sign in to comment.