class PDFKit::NoExecutableError

Public Class Methods

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