barcode1dtools 0.9.2
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.
- data/MIT-LICENSE +21 -0
- data/lib/barcode1dtools.rb +119 -0
- data/lib/barcode1dtools/ean13.rb +389 -0
- data/lib/barcode1dtools/ean8.rb +252 -0
- data/lib/barcode1dtools/interleaved2of5.rb +248 -0
- data/lib/barcode1dtools/upc_a.rb +143 -0
- data/lib/barcode1dtools/upc_e.rb +274 -0
- data/lib/barcode1dtools/upc_supplemental_2.rb +221 -0
- data/lib/barcode1dtools/upc_supplemental_5.rb +246 -0
- data/test/test_barcode1d.rb +56 -0
- data/test/test_barcode1dean13.rb +102 -0
- data/test/test_barcode1dean8.rb +95 -0
- data/test/test_barcode1di2of5.rb +86 -0
- data/test/test_barcode1dupca.rb +102 -0
- data/test/test_barcode1dupce.rb +127 -0
- data/test/test_barcode1dupcsupp2.rb +89 -0
- data/test/test_barcode1dupcsupp5.rb +94 -0
- metadata +93 -0
metadata
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: barcode1dtools
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 63
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 9
|
9
|
+
- 2
|
10
|
+
version: 0.9.2
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Michael Chaney
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2012-08-05 00:00:00 -05:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: " Barcode1D is a small library of generators for many kinds of\n 1-dimensional barcodes. Currently implemented are\n Interleaved 2 of 5, EAN-13, and UPC-A. Patterns are created in\n either a simple format of 1s and 0s or as a run-length encoded\n string. This only generates the patterns; actual display must be\n implemented by the programmer.\n"
|
23
|
+
email: mdchaney@michaelchaney.com
|
24
|
+
executables: []
|
25
|
+
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- lib/barcode1dtools/ean13.rb
|
32
|
+
- lib/barcode1dtools/ean8.rb
|
33
|
+
- lib/barcode1dtools/interleaved2of5.rb
|
34
|
+
- lib/barcode1dtools/upc_a.rb
|
35
|
+
- lib/barcode1dtools/upc_e.rb
|
36
|
+
- lib/barcode1dtools/upc_supplemental_2.rb
|
37
|
+
- lib/barcode1dtools/upc_supplemental_5.rb
|
38
|
+
- lib/barcode1dtools.rb
|
39
|
+
- MIT-LICENSE
|
40
|
+
- test/test_barcode1d.rb
|
41
|
+
- test/test_barcode1dean13.rb
|
42
|
+
- test/test_barcode1dean8.rb
|
43
|
+
- test/test_barcode1di2of5.rb
|
44
|
+
- test/test_barcode1dupca.rb
|
45
|
+
- test/test_barcode1dupce.rb
|
46
|
+
- test/test_barcode1dupcsupp2.rb
|
47
|
+
- test/test_barcode1dupcsupp5.rb
|
48
|
+
has_rdoc: true
|
49
|
+
homepage: http://rubygems.org/gems/barcode1dtools
|
50
|
+
licenses:
|
51
|
+
- MIT
|
52
|
+
- GPL-2
|
53
|
+
post_install_message:
|
54
|
+
rdoc_options: []
|
55
|
+
|
56
|
+
require_paths:
|
57
|
+
- lib
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
hash: 59
|
64
|
+
segments:
|
65
|
+
- 1
|
66
|
+
- 8
|
67
|
+
- 6
|
68
|
+
version: 1.8.6
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
hash: 3
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
version: "0"
|
78
|
+
requirements: []
|
79
|
+
|
80
|
+
rubyforge_project:
|
81
|
+
rubygems_version: 1.5.3
|
82
|
+
signing_key:
|
83
|
+
specification_version: 3
|
84
|
+
summary: Pattern generators for 1D barcodes
|
85
|
+
test_files:
|
86
|
+
- test/test_barcode1d.rb
|
87
|
+
- test/test_barcode1dean13.rb
|
88
|
+
- test/test_barcode1dean8.rb
|
89
|
+
- test/test_barcode1di2of5.rb
|
90
|
+
- test/test_barcode1dupca.rb
|
91
|
+
- test/test_barcode1dupce.rb
|
92
|
+
- test/test_barcode1dupcsupp2.rb
|
93
|
+
- test/test_barcode1dupcsupp5.rb
|