summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMark Burns <markburns@users.noreply.github.com>2022-12-18 17:55:53 +0000
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-12-20 13:15:02 +0900
commit870bcc96bab644656cd914b5061fcacc39db6557 (patch)
tree7036bf282ffe72db4e9357e9a178a0855e1235fd /lib
parent8eb66180137e3cba030d43fba21980efa5f58bb3 (diff)
[rubygems/rubygems] fix
https://github.com/rubygems/rubygems/pull/6147 when --parseable and --groups used together https://github.com/rubygems/rubygems/commit/3b0b95c509
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/6966
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/cli/outdated.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/bundler/cli/outdated.rb b/lib/bundler/cli/outdated.rb
index e9f93fec39..12c3384938 100644
--- a/lib/bundler/cli/outdated.rb
+++ b/lib/bundler/cli/outdated.rb
@@ -111,9 +111,7 @@ module Bundler
end.compact
if options[:parseable]
- relevant_outdated_gems.each do |gems|
- print_gems(gems)
- end
+ print_gems(relevant_outdated_gems)
else
print_gems_table(relevant_outdated_gems)
end