class Prawn::Table

def ink_and_draw_cells(cells_this_page, draw_cells = true)

ink cells and then draw them
def ink_and_draw_cells(cells_this_page, draw_cells = true)
  ink_cells(cells_this_page)
  Cell.draw_cells(cells_this_page) if draw_cells
end