class Prawn::Table::Cell

def draw_background(pt)


Draws the cell's background color.
def draw_background(pt)
  return unless background_color
  @pdf.mask(:fill_color) do
    @pdf.fill_color background_color
    @pdf.fill_rectangle pt, width, height
  end
end