module WkhtmltopdfRunner
Constants
- VERSION
Public Class Methods
runner()
click to toggle source
# File lib/wkhtmltopdf_runner.rb, line 13 def runner @runner ||= WkhtmltopdfRunner::Runner.new end
Private Class Methods
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# File lib/wkhtmltopdf_runner.rb, line 19 def method_missing(method_name, *args, &block) return super unless runner.respond_to?(method_name) runner.send(method_name, *args, &block) end
respond_to_missing?(method_name, include_private = false)
click to toggle source
# File lib/wkhtmltopdf_runner.rb, line 25 def respond_to_missing?(method_name, include_private = false) runner.respond_to?(method_name, include_private) end