File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
spec/dummy/config/environments Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 88 fail-fast : false
99 matrix :
1010 ruby : ['3.1', '3.2', '3.3']
11- rails : ['6.1', '7.0', '7.1']
11+ rails : ['6.1', '7.0', '7.1', '7.2' ]
1212
1313 runs-on : ubuntu-latest
1414 name : Test against Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ source "https://rubygems.org"
33# Specify your gem's dependencies in inertia-rails.gemspec
44gemspec
55
6- version = ENV [ "RAILS_VERSION" ] || "7.1 "
7- gem "rails" , "~> #{ version } .0"
6+ version = ENV [ "RAILS_VERSION" ] || "7.2 "
7+ gem "rails" , "~> #{ version } .0"
Original file line number Diff line number Diff line change 2929 config . cache_store = :null_store
3030
3131 # Raise exceptions instead of rendering exception templates.
32- config . action_dispatch . show_exceptions = false
32+ config . action_dispatch . show_exceptions = Rails . version < '7.1' ? false : :none
3333
3434 # Disable request forgery protection in test environment.
3535 config . action_controller . allow_forgery_protection = false
You can’t perform that action at this time.
0 commit comments