class BundleUpdateInteractive::CLI

def puts_legend_and_withheld_gems(report)

def puts_legend_and_withheld_gems(report)
  puts
  puts legend
  puts
  return if report.withheld_gems.empty?
  puts "The following gems are being held back and cannot be updated."
  puts Table.withheld(report.withheld_gems).render
  puts
end