smartware 0.2.6 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/smartware/interfaces/printer.rb +1 -0
- data/lib/smartware/version.rb +1 -1
- metadata +1 -1
@@ -43,6 +43,7 @@ EOS
|
|
43
43
|
data = "".force_encoding("BINARY")
|
44
44
|
data << @render.doc_header.force_encoding("BINARY") if @render.respond_to? :doc_header
|
45
45
|
data << @render.normal_text(text, true).force_encoding("BINARY") if @render.respond_to? :normal_text
|
46
|
+
data << @render.linebreak.force_encoding("BINARY") if @render.respond_to? :linebreak
|
46
47
|
data << @render.doc_footer.force_encoding("BINARY") if @render.respond_to? :doc_footer
|
47
48
|
|
48
49
|
do_print data, max_time
|
data/lib/smartware/version.rb
CHANGED