class RSpec::Core::ExampleStatusDumper

def column_widths

def column_widths
  @column_widths ||= begin
    value_sets = rows.transpose
    headers.each_with_index.map do |header, index|
      values = value_sets[index] << header.to_s
      values.map(&:length).max
    end
  end
end