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.
Files changed (47) 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 -8
  31. metadata +59 -57
  32. data/.gitignore +0 -3
  33. data/.rspec +0 -2
  34. data/.travis.yml +0 -6
  35. data/Gemfile +0 -3
  36. data/Rakefile +0 -1
  37. data/lib/devices/btpr880.rb +0 -33
  38. data/lib/devices/html.rb +0 -14
  39. data/lib/thermal/parser.rb +0 -30
  40. data/spec/btpr880_spec.rb +0 -36
  41. data/spec/fixtures/receipt.html +0 -6
  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/tasks/console.rake +0 -9
  46. data/tasks/spec.rake +0 -3
  47. 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
@@ -1,6 +0,0 @@
1
- <strong>Bold</strong>
2
- <u>Underline</u>
3
- <br/>
4
- <p>
5
- Hello there
6
- </p>
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/tasks/console.rake DELETED
@@ -1,9 +0,0 @@
1
- task :console do
2
- require './lib/thermal'
3
- require 'pry'
4
- require 'hirb'
5
- require 'logger'
6
- require 'benchmark'
7
- include Thermal
8
- Pry.start binding, :input => StringIO.new(".clear")
9
- end
data/tasks/spec.rake DELETED
@@ -1,3 +0,0 @@
1
- require 'rspec/core/rake_task'
2
-
3
- RSpec::Core::RakeTask.new(:spec)
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