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