thermal 0.1.1 → 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 -8
- metadata +59 -57
- data/.gitignore +0 -3
- data/.rspec +0 -2
- data/.travis.yml +0 -6
- data/Gemfile +0 -3
- data/Rakefile +0 -1
- data/lib/devices/btpr880.rb +0 -33
- data/lib/devices/html.rb +0 -14
- data/lib/thermal/parser.rb +0 -30
- data/spec/btpr880_spec.rb +0 -36
- data/spec/fixtures/receipt.html +0 -6
- data/spec/printer_spec.rb +0 -29
- data/spec/spec_helper.rb +0 -3
- data/spec/thermal_spec.rb +0 -7
- data/tasks/console.rake +0 -9
- data/tasks/spec.rake +0 -3
- data/thermal.gemspec +0 -16
data/spec/btpr880_spec.rb
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
-
|
3
|
-
describe BTPR880 do
|
4
|
-
|
5
|
-
describe "#startCode" do
|
6
|
-
it "should translate <strong>" do
|
7
|
-
BTPR880.startCode(:strong).should eq "\033E1"
|
8
|
-
end
|
9
|
-
it "should translate <u>" do
|
10
|
-
BTPR880.startCode(:u).should eq "\033-1"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
describe "#endCode" do
|
15
|
-
it "should translate </strong>" do
|
16
|
-
BTPR880.endCode(:strong).should eq "\033E0"
|
17
|
-
end
|
18
|
-
it "should translate </u>" do
|
19
|
-
BTPR880.endCode(:u).should eq "\033-0"
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
end
|
24
|
-
|
25
|
-
describe "BTPR880 Parser" do
|
26
|
-
|
27
|
-
before(:each) do
|
28
|
-
@parser = Thermal::Parser.new(BTPR880)
|
29
|
-
end
|
30
|
-
|
31
|
-
it "should translate html to BTPR880 valid print codes" do
|
32
|
-
translated = @parser.process("<strong>bold<u>underline</u></strong>")
|
33
|
-
translated.should eq "\033E1bold\033-1underline\033-0\033E0"
|
34
|
-
end
|
35
|
-
|
36
|
-
end
|
data/spec/fixtures/receipt.html
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/tasks/console.rake
DELETED
data/tasks/spec.rake
DELETED
data/thermal.gemspec
DELETED
@@ -1,16 +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
|
-
gem.add_development_dependency('rspec')
|
14
|
-
gem.add_development_dependency('pry')
|
15
|
-
gem.add_development_dependency('hirb')
|
16
|
-
end
|