module PuppetPdf

Constants

VERSION

Public Class Methods

pdf_from_html(html, options = {}) click to toggle source
# File lib/puppet_pdf.rb, line 6
def self.pdf_from_html(html, options = {})
  pdf_creator(html, options).call
end

Private Class Methods

pdf_creator(source, options) click to toggle source
# File lib/puppet_pdf.rb, line 10
                     def self.pdf_creator(source, options)
  ::PuppetPdf::PdfCreator.new(source, options)
end