Created
January 22, 2013 10:19
-
-
Save chocnut/4593567 to your computer and use it in GitHub Desktop.
prawn sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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