I need to generate PDFs with Rails 3.0.3.

Prawn + Prawnto looks great as showed by Ryan Bates

But I cannot make his example works, the table function is not recognized by the pdf variable

Any insight on this problem?

Thanks

link|improve this question

What do you need to generate from? HTML templates? Other documents? Ruby code? Did you watch the screencast? – seb Jan 28 '11 at 17:23
1  
This isn't an answer, but personally I find wicked_pdf (github.com/mileszs/wicked_pdf) a much easier solution for generating PDFs in Rails. Firstly it's faster than Prawn, and secondly I can build the PDF using HTML, exactly the same as the rest of my app's views – Gareth Jan 28 '11 at 17:27
Did you watch the screencast? --> yes! pdf.text and move_down works fine but not pdf.table – denisjacquemin Jan 28 '11 at 17:33
I'll have a look to Wicked PDF, thanks. – denisjacquemin Jan 28 '11 at 17:36
PDFkit works great as well github.com/jdpace/PDFKit – Francisco Jan 28 '11 at 20:33
feedback

2 Answers

open up prawn-core-0.8.4\lib\prawn\core.rb

at the bottom of that file you will see a list of all the 'require' items. I think this is where you should add require 'prawn/layout' if you do not want it in your views. still not ideal as you are customising the plugin.

link|improve this answer
feedback
up vote 0 down vote accepted

I found a quick fix, but not really happy with it...

adding require 'prawn/layout' to my view fix the problem

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.