From 4f1b1817a8f5f51f9e3687dac465dabfb112883b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Fri, 9 Jun 2023 19:37:24 +0200 Subject: [PATCH] [rubygems/rubygems] There should always be a reason https://github.com/rubygems/rubygems/commit/4180008c2d --- lib/bundler/definition.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bundler/definition.rb b/lib/bundler/definition.rb index cbd9012e3a..39b7d086f0 100644 --- a/lib/bundler/definition.rb +++ b/lib/bundler/definition.rb @@ -405,7 +405,7 @@ module Bundler end reason = change_reason - msg << "\n\n#{reason.split(", ").map(&:capitalize).join("\n")}" unless reason.strip.empty? + msg << "\n\n#{reason.split(", ").map(&:capitalize).join("\n")}" msg << "\n\nYou have added to the Gemfile:\n" << added.join("\n") if added.any? msg << "\n\nYou have deleted from the Gemfile:\n" << deleted.join("\n") if deleted.any? msg << "\n\nYou have changed in the Gemfile:\n" << changed.join("\n") if changed.any?