class Fastlane::Helper::BuildLogInfoHelper

Public Class Methods

summary_table(title:, headings:, rows:) click to toggle source
# File lib/fastlane/plugin/build_log_info/helper/build_log_info_helper.rb, line 5
def summary_table(title:, headings:, rows:)
  Terminal::Table.new(
    title: title.to_s.green,
    headings: headings,
    rows: FastlaneCore::PrintTable.transform_output(rows)
  ).to_s
end