I need to be able to render some views as PDFs from a Rails 3 project. I've never before used PDF generation techniques with ruby/rails, so I researched a few popular approaches such as Prawn and PDF::Writer, but all the examples and articles I found so far seem outdated and only applicable for rails 2.x. I haven't yet seen a working Rails3 example; tried myself installing prawn and the prawnto gems and reproducing the example described in this Railscasts episode, but I'm getting error of prawnto method not being recognized. I'm uncertain of whether this was an implementation error or just a sign of incompatibility, but seeing other people share on the web that prawn is no longer working for them in Rails3 I didn't bother tracing the code further.

Has anyone found a working reliable solution for pdf generation in Rails3? Could you possibly share it or point me to external resources and documentation? Big thanks!

link|improve this question
1  
Theres also a railscast on PDFKit - railscasts.com/episodes/220-pdfkit – alternative Nov 7 '10 at 13:25
wicked_pdf is how I'm doing these now, see answer by @Thilo – wesgarrison Jul 21 '11 at 15:19
feedback

3 Answers

up vote 6 down vote accepted

New answer to an old question, in case others stumble across this: WickedPDF (which uses wkhtmltopdf just like PDFkit) makes this a snap.

https://github.com/mileszs/wicked_pdf

link|improve this answer
feedback

Prawn does work with Rails 3. I have personally used it with no problems. You do have to get the latest versions of the gem and the prawnto plugin for rails.

PDFkit does have the advantage of using the Webkit rendering engine, so you get to use CSS to define your layouts, and you get matching web pages for free with Safari and Chrome. It has a slightly nicer learning curve than Prawn.

link|improve this answer
1  
prawnto wasn't working for Rails 3 and now seems to be dead. – m33lky Nov 12 '11 at 6:21
Yes, Prawnto is dead now. But Prawn can still be used with rails. Ryan bates shows how – edgerunner Nov 12 '11 at 23:33
feedback

Have you seen PDFkit? I'm pretty sure that works with Rails 3, it is a piece of Rack middleware that can convert any HTML page to PDF that matches a route ending in .pdf

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.