Skip to content

Instantly share code, notes, and snippets.

@bradediger
Created September 12, 2011 00:11
Show Gist options
  • Save bradediger/1210342 to your computer and use it in GitHub Desktop.
Save bradediger/1210342 to your computer and use it in GitHub Desktop.
Prawn::Document.generate 'test_table.pdf', :page_layout => :landscape do |pdf|
data = [(1..10).map { "foo bar baz " * 20 }] * 5
pdf.table data, :column_widths => [96,120,54,54,54,54,54,54,54,54] do |t|
t.column(0).style :overflow => :shrink_to_fit, :min_font_size => 6
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment