class ChefCLI::Policyfile::Reports::TablePrinter

def column(collection = [])

for that column when rows are printed.
of strings and the longest string is used as the left justify width
Defines a column. If a collection is given, it is mapped to an array
def column(collection = [])
  @column_widths << (collection.map(&:to_s).map(&:size).max || 0)
end