Skip to content

Instantly share code, notes, and snippets.

@chocnut
Created January 22, 2013 10:19
Show Gist options
  • Save chocnut/4593567 to your computer and use it in GitHub Desktop.
Save chocnut/4593567 to your computer and use it in GitHub Desktop.
prawn sample
def show
@order = Order.find(params[:id])
respond_to do |format|
format.html
format.pdf do
pdf = Prawn::Document.new
pdf.text "Hello World"
send_date pdf.render
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment