Method: Driver::Base::Print#print

Defined in:
app/models/extface/driver/base/print.rb

alias_method :print, :push



19
20
21
22
23
24
25
# File 'app/models/extface/driver/base/print.rb', line 19

def print(text)
  if device.encoding.present?
    push text.encode(device.encoding)
  else
    push text
  end
end