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 8
8
fail-fast : false
9
9
matrix :
10
10
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' ]
12
12
13
13
runs-on : ubuntu-latest
14
14
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"
3
3
# Specify your gem's dependencies in inertia-rails.gemspec
4
4
gemspec
5
5
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 29
29
config . cache_store = :null_store
30
30
31
31
# 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
33
33
34
34
# Disable request forgery protection in test environment.
35
35
config . action_controller . allow_forgery_protection = false
You can’t perform that action at this time.
0 commit comments