class Prawn::Table::Cell
def content_width
Returns the width of the bare content in the cell, excluding padding.
def content_width if defined?(@width) && @width # manually set return @width - padding_left - padding_right end natural_content_width end