From: Go MAEDA Date: Sun, 17 Nov 2024 04:56:19 +0000 (+0000) Subject: Merged r23269 from trunk to 5.1-stable (#41749). X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4b45a3b7272ed4939b7199ebdca42504000c5d90;p=redmine.git Merged r23269 from trunk to 5.1-stable (#41749). git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@23286 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/Gemfile b/Gemfile index 8e79c4059..290011946 100644 --- a/Gemfile +++ b/Gemfile @@ -57,16 +57,23 @@ end # Include database gems for the adapters found in the database # configuration file -require 'erb' -require 'yaml' database_file = File.join(File.dirname(__FILE__), "config/database.yml") if File.exist?(database_file) - yaml_config = ERB.new(IO.read(database_file)).result - database_config = YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(yaml_config) : YAML.load(yaml_config) - adapters = database_config.values.filter_map {|c| c['adapter']}.uniq + database_config = File.read(database_file) + + # Requiring libraries in a Gemfile may cause Bundler warnings or + # unexpected behavior, especially if multiple gem versions are available. + # So, process database.yml through ERB only if it contains ERB syntax + # in the adapter setting. See https://www.redmine.org/issues/41749. + if database_config.match?(/^ *adapter: *<%=/) + require 'erb' + database_config = ERB.new(database_config).result + end + + adapters = database_config.scan(/^ *adapter: *(.*)/).flatten.uniq if adapters.any? adapters.each do |adapter| - case adapter + case adapter.strip when 'mysql2' gem "mysql2", "~> 0.5.0", :platforms => [:mri, :mingw, :x64_mingw] gem "with_advisory_lock"