class PDFKit::NoExecutableError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/pdfkit/pdfkit.rb, line 6
def initialize
  msg  = "No wkhtmltopdf executable found at #{PDFKit.configuration.wkhtmltopdf}\n"
  msg << ">> Please install wkhtmltopdf - https://github.com/pdfkit/PDFKit/wiki/Installing-WKHTMLTOPDF"
  super(msg)
end