File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 matrix :
1717 database : [mysql, postgres, sqlite]
1818 ruby-version :
19- - 3.1
2019 - 3.2
2120 - 3.3
2221 - 3.4
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
2121 end
2222
2323 rails_version = ">= 7.2"
24- spec . required_ruby_version = ">= 3.1 .0"
24+ spec . required_ruby_version = ">= 3.2 .0"
2525 spec . add_dependency "activerecord" , rails_version
2626 spec . add_dependency "activejob" , rails_version
2727 spec . add_dependency "actioncable" , rails_version
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ module ConfigStubs
44 extend ActiveSupport ::Concern
55
66 class ConfigStub
7- def initialize ( **opts )
7+ def initialize ( **)
88 @config = ActiveSupport ::OrderedOptions . new .
9- update ( { adapter : :test } . merge ( **opts ) )
9+ update ( { adapter : :test } . merge ( **) )
1010 end
1111
1212 def config_for ( _file )
@@ -23,7 +23,7 @@ def run!
2323 end
2424 end
2525
26- def with_cable_config ( **opts )
27- Rails . stub ( :application , ConfigStub . new ( **opts ) ) { yield }
26+ def with_cable_config ( **)
27+ Rails . stub ( :application , ConfigStub . new ( **) ) { yield }
2828 end
2929end
You can’t perform that action at this time.
0 commit comments