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.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -20
  3. data/README.md +200 -27
  4. data/data/db.yml +1987 -0
  5. data/data/original.yml +1635 -0
  6. data/lib/thermal/byte_buffer.rb +48 -0
  7. data/lib/thermal/db/charset.rb +36 -0
  8. data/lib/thermal/db/cjk_encoding.rb +46 -0
  9. data/lib/thermal/db/data.rb +77 -0
  10. data/lib/thermal/db/device.rb +79 -0
  11. data/lib/thermal/db/encoding.rb +35 -0
  12. data/lib/thermal/db/loader.rb +65 -0
  13. data/lib/thermal/db.rb +43 -0
  14. data/lib/thermal/dsl.rb +28 -0
  15. data/lib/thermal/escpos/buffer.rb +167 -0
  16. data/lib/thermal/escpos/cmd.rb +11 -0
  17. data/lib/thermal/escpos/writer.rb +93 -0
  18. data/lib/thermal/escpos_star/buffer.rb +38 -0
  19. data/lib/thermal/escpos_star/writer.rb +17 -0
  20. data/lib/thermal/printer.rb +56 -21
  21. data/lib/thermal/profile.rb +71 -0
  22. data/lib/thermal/stargraphic/capped_byte_buffer.rb +20 -0
  23. data/lib/thermal/stargraphic/chunked_byte_buffer.rb +62 -0
  24. data/lib/thermal/stargraphic/writer.rb +318 -0
  25. data/lib/thermal/starprnt/buffer.rb +46 -0
  26. data/lib/thermal/starprnt/writer.rb +81 -0
  27. data/lib/thermal/util.rb +74 -0
  28. data/lib/thermal/version.rb +5 -3
  29. data/lib/thermal/writer_base.rb +122 -0
  30. data/lib/thermal.rb +81 -6
  31. metadata +86 -34
  32. data/.gitignore +0 -3
  33. data/.rspec +0 -2
  34. data/.travis.yml +0 -6
  35. data/Gemfile +0 -3
  36. data/lib/devices/btpr880.rb +0 -25
  37. data/lib/devices/html.rb +0 -12
  38. data/lib/thermal/parser.rb +0 -30
  39. data/spec/btpr880_spec.rb +0 -36
  40. data/spec/fixtures/receipt.html +0 -6
  41. data/spec/parser_spec.rb +0 -5
  42. data/spec/printer_spec.rb +0 -29
  43. data/spec/spec_helper.rb +0 -3
  44. data/spec/thermal_spec.rb +0 -7
  45. data/thermal.gemspec +0 -13
@@ -1,6 +0,0 @@
1
- <strong>Bold</strong>
2
- <u>Underline</u>
3
- <br/>
4
- <p>
5
- Hello there
6
- </p>
data/spec/parser_spec.rb DELETED
@@ -1,5 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe Thermal::Printer do
4
-
5
- end
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
@@ -1,3 +0,0 @@
1
- $:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
2
- require 'thermal'
3
- require 'rspec'
data/spec/thermal_spec.rb DELETED
@@ -1,7 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
-
3
- describe Thermal do
4
- it "should have a version" do
5
- Thermal::VERSION.should be_a_kind_of String
6
- end
7
- end
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