From fa8b38749b893f631b1156514200cdd3c95c983f Mon Sep 17 00:00:00 2001 From: MAEDA Go Date: Mon, 7 Sep 2026 15:53:08 +0900 Subject: [PATCH 1/3] Update config/boot.rb to match the current Rails template. --- config/boot.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config/boot.rb b/config/boot.rb index e7d68c4ad..af356f97a 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -16,7 +16,6 @@ ENV['RACK_QUERY_PARSER_BYTESIZE_LIMIT'] ||= '33554432' ENV['RACK_QUERY_PARSER_PARAMS_LIMIT'] ||= '65536' -# Set up gems listed in the Gemfile. -ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) -require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) +require 'bundler/setup' # Set up gems listed in the Gemfile. -- 2.55.0