Convert Excel and Word files to PDF Using ruby -


i want convert excel multiple sheets , word files pdf format single file using ruby.

is there script/gems/plugins available achieve this?

there not gem doing job. can combine some:

  1. for excel files - read data using roo gem - http://roo.rubyforge.org/

  2. for word files opening .doc files in ruby

  3. convert data readed in previous steps html.

  4. then convert pdf using: https://github.com/pdfkit/pdfkit


Comments