class Prawn::Table

def natural_width


a mile long.
text is the width it would assume if it were not wrapped at all. Could be
extremely silly; for example, the unconstrained width of a paragraph of
Returns the "natural" (unconstrained) width of the table. This may be
def natural_width
  @natural_width ||= natural_column_widths.inject(0, &:+)
end