class Prawn::Table::Cell

def set_width_constraints


because padding and size can change.
Sets the cell's minimum and maximum width. Deferred until requested
def set_width_constraints
  @min_width ||= padding_left + padding_right
  @max_width ||= @pdf.bounds.width
end