thermal 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -20
- data/README.md +200 -27
- data/data/db.yml +1987 -0
- data/data/original.yml +1635 -0
- data/lib/thermal/byte_buffer.rb +48 -0
- data/lib/thermal/db/charset.rb +36 -0
- data/lib/thermal/db/cjk_encoding.rb +46 -0
- data/lib/thermal/db/data.rb +77 -0
- data/lib/thermal/db/device.rb +79 -0
- data/lib/thermal/db/encoding.rb +35 -0
- data/lib/thermal/db/loader.rb +65 -0
- data/lib/thermal/db.rb +43 -0
- data/lib/thermal/dsl.rb +28 -0
- data/lib/thermal/escpos/buffer.rb +167 -0
- data/lib/thermal/escpos/cmd.rb +11 -0
- data/lib/thermal/escpos/writer.rb +93 -0
- data/lib/thermal/escpos_star/buffer.rb +38 -0
- data/lib/thermal/escpos_star/writer.rb +17 -0
- data/lib/thermal/printer.rb +56 -21
- data/lib/thermal/profile.rb +71 -0
- data/lib/thermal/stargraphic/capped_byte_buffer.rb +20 -0
- data/lib/thermal/stargraphic/chunked_byte_buffer.rb +62 -0
- data/lib/thermal/stargraphic/writer.rb +318 -0
- data/lib/thermal/starprnt/buffer.rb +46 -0
- data/lib/thermal/starprnt/writer.rb +81 -0
- data/lib/thermal/util.rb +74 -0
- data/lib/thermal/version.rb +5 -3
- data/lib/thermal/writer_base.rb +122 -0
- data/lib/thermal.rb +81 -6
- metadata +86 -34
- data/.gitignore +0 -3
- data/.rspec +0 -2
- data/.travis.yml +0 -6
- data/Gemfile +0 -3
- data/lib/devices/btpr880.rb +0 -25
- data/lib/devices/html.rb +0 -12
- data/lib/thermal/parser.rb +0 -30
- data/spec/btpr880_spec.rb +0 -36
- data/spec/fixtures/receipt.html +0 -6
- data/spec/parser_spec.rb +0 -5
- data/spec/printer_spec.rb +0 -29
- data/spec/spec_helper.rb +0 -3
- data/spec/thermal_spec.rb +0 -7
- data/thermal.gemspec +0 -13
data/spec/fixtures/receipt.html
DELETED
data/spec/parser_spec.rb
DELETED
data/spec/printer_spec.rb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
-
|
3
|
-
describe Thermal::Printer do
|
4
|
-
|
5
|
-
describe "#translation" do
|
6
|
-
it "should be empty" do
|
7
|
-
Thermal::Printer.translate.should be {}
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
describe "#getCode" do
|
12
|
-
it "should return open/close tag array" do
|
13
|
-
Thermal::Printer.getCode(:tag).should eq ['', '']
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
describe "#startCode" do
|
18
|
-
it "should return a printer code to start a print mode" do
|
19
|
-
Thermal::Printer.startCode(:tag).should eq ''
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
describe "#endCode" do
|
24
|
-
it "should return a printer code to end a print mode" do
|
25
|
-
Thermal::Printer.endCode(:tag).should eq ''
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
end
|
data/spec/spec_helper.rb
DELETED
data/spec/thermal_spec.rb
DELETED
data/thermal.gemspec
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
require File.expand_path('../lib/thermal/version', __FILE__)
|
2
|
-
|
3
|
-
Gem::Specification.new do |gem|
|
4
|
-
gem.name = 'thermal'
|
5
|
-
gem.version = Thermal::VERSION
|
6
|
-
gem.summary = 'Convert basic HTML into thermal printer escape codes.'
|
7
|
-
gem.description = gem.description
|
8
|
-
gem.author = 'Tyler Kellen'
|
9
|
-
gem.email = 'tyler@sleekcode.net'
|
10
|
-
gem.homepage = 'https://github.com/tkellen/ruby-thermal/'
|
11
|
-
gem.files = `git ls-files`.split("\n")
|
12
|
-
gem.require_paths = ['lib']
|
13
|
-
end
|