File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 22
33require "bundler/setup" # Set up gems listed in the Gemfile.
44require "bootsnap/setup" # Speed up boot time by caching expensive operations.
5+ require "logger" # Fix for Ruby 3.3 compatibility with ActiveSupport 6.1.7.10
Original file line number Diff line number Diff line change 22
33require "bundler/setup" # Set up gems listed in the Gemfile.
44require "bootsnap/setup" # Speed up boot time by caching expensive operations.
5+ require "logger" # Fix for Ruby 3.3 compatibility with ActiveSupport 6.1.7.10
Original file line number Diff line number Diff line change 186186 File . write ( default_settings_file_name , "default: default_value" )
187187 File . write ( custom_settings_file_name , "custom: custom_value" )
188188 # workaround for Rails 6.1
189- File . write ( spring_file_name_for_rails_6_1 , "" ) if Rails . version == "6.1.7.6"
189+ File . write ( spring_file_name_for_rails_6_1 , "" ) if Rails . version . start_with? ( "6.1" )
190190 end
191191
192192 after do
You can’t perform that action at this time.
0 commit comments