fastlane/lib/fastlane/plugins/plugin_update_manager.rb in fastlane-2.97.0 vs fastlane/lib/fastlane/plugins/plugin_update_manager.rb in fastlane-2.98.0
- old
+ new
@@ -39,9 +39,10 @@
if rows.empty?
UI.verbose("All plugins are up to date")
return
end
+ require 'terminal-table'
puts(Terminal::Table.new({
rows: FastlaneCore::PrintTable.transform_output(rows),
title: "Plugin updates available".yellow,
headings: ["Plugin", "Your Version", "Latest Version"]
}))