I implemented CSV export, and now I'm trying to export data to PDF.
How can I export CSV data from a CSV file to PDF.
Thank.
You can use shrimp https://github.com/sandal/prawn to create pdf files in ruby using some code:
require 'prawn' pdf = Prawn::Document.new pdf.text(my_csv_data) pdf.render_file('csv.pdf')
There is also a tutorial here: http://railstips.org/blog/archives/2008/10/13/how-to-generate-pdfs-in-rails-with-prawn/
You can use PDFKit. Try these links:
http://rubygems.org/gems/pdfkit
https://github.com/grosser/PDFKit/