class Prawn::Table

def set_row_heights


row is the same height.
Assigns the row heights to each cell. This ensures that every cell in a
def set_row_heights
  row_heights.each_with_index { |h, row_num| row(row_num).height = h }
end