class PDF::Reader::PrintReceiver
A simple receiver that prints all operaters and parameters in the content stream of a single page.
Public Instance Methods
method_missing(methodname, *args)
click to toggle source
: (Symbol, *untyped) -> void
# File lib/pdf/reader/print_receiver.rb, line 17 def method_missing(methodname, *args) puts "#{methodname} => #{args.inspect}" end
respond_to?(meth)
click to toggle source
: (untyped) -> bool
# File lib/pdf/reader/print_receiver.rb, line 12 def respond_to?(meth) true end