Skip to content

Instantly share code, notes, and snippets.

@spetroll
Created February 19, 2016 09:56
Show Gist options
  • Save spetroll/21a8c69744dc7b35507a to your computer and use it in GitHub Desktop.
Save spetroll/21a8c69744dc7b35507a to your computer and use it in GitHub Desktop.
Minimal prawn/table example
require 'prawn'
require 'prawn/table'
SKETCHUP_CONSOLE.show
UI.menu("Plugins").add_item("PDF: Generate") {
generate
}
def generate
Prawn::Document.generate("test.pdf") do
text "hello"
test = make_table([["foo", "bar " * 10, "baz"],["baz", "bar", "foo " * 10]])
test.draw
text "world"
end
system `start test.pdf`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment