# encoding: utf-8 # # Demonstrates how to set the table border color with the :border_color # attribute. # $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', '..', 'lib')) require "rubygems" require "prawn" require "prawn/layout" Prawn::Document.generate "table_border_color.pdf" do table [ ['01/01/2008', 'John Doe', '4.2', '125.00', '525.00'], ['01/12/2008', 'Jane Doe', '3.2', '75.50', '241.60'] ] * 20, :position => :center, :headers => ['Date', 'Employee', 'Hours', 'Rate', 'Total'], :column_widths => { 0 => 75, 1 => 100, 2 => 50, 3 => 50, 4 => 50}, :border_style => :grid, :border_color => "ff0000" end