gbarcode 0.98.16-mswin32
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/CHANGELOG +3 -0
- data/COPYING +0 -0
- data/README +199 -0
- data/Rakefile +109 -0
- data/ext/barcode.h +119 -0
- data/ext/barcode_wrap.c +3192 -0
- data/ext/codabar.c +182 -0
- data/ext/code128.c +607 -0
- data/ext/code39.c +173 -0
- data/ext/code93.c +213 -0
- data/ext/ean.c +774 -0
- data/ext/extconf.rb +6 -0
- data/ext/i25.c +164 -0
- data/ext/library.c +244 -0
- data/ext/msi.c +155 -0
- data/ext/pcl.c +200 -0
- data/ext/plessey.c +164 -0
- data/ext/ps.c +272 -0
- data/ext/svg.c +174 -0
- data/extras/mingw-rbconfig.rb +176 -0
- data/lib/gbarcode.so +0 -0
- data/test/assets/gb-code128b.eps +44 -0
- data/test/gbarcode_test.rb +48 -0
- data/test/test_helper.rb +2 -0
- metadata +77 -0
metadata
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.0
|
3
|
+
specification_version: 1
|
4
|
+
name: gbarcode
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.98.16
|
7
|
+
date: 2007-05-10 00:00:00 -04:00
|
8
|
+
summary: A barcode library that wraps GNU Barcode using SWIG.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: delagoya@rubyforge.org
|
12
|
+
homepage: http://gbarcode.rubyforge.org
|
13
|
+
rubyforge_project:
|
14
|
+
description: A barcode library that wraps GNU Barcode using SWIG. Most popular encoding schemes are supported (Code 39, UPC, ISBN, etc.). See the README for a full listing.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: mswin32
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- delaGOYA
|
31
|
+
files:
|
32
|
+
- CHANGELOG
|
33
|
+
- COPYING
|
34
|
+
- README
|
35
|
+
- Rakefile
|
36
|
+
- test/test_helper.rb
|
37
|
+
- test/gbarcode_test.rb
|
38
|
+
- test/assets
|
39
|
+
- test/assets/gb-code128b.eps
|
40
|
+
- extras/mingw-rbconfig.rb
|
41
|
+
- ext/barcode.h
|
42
|
+
- ext/svg.c
|
43
|
+
- ext/pcl.c
|
44
|
+
- ext/code93.c
|
45
|
+
- ext/ps.c
|
46
|
+
- ext/plessey.c
|
47
|
+
- ext/msi.c
|
48
|
+
- ext/library.c
|
49
|
+
- ext/barcode_wrap.c
|
50
|
+
- ext/code128.c
|
51
|
+
- ext/i25.c
|
52
|
+
- ext/codabar.c
|
53
|
+
- ext/ean.c
|
54
|
+
- ext/code39.c
|
55
|
+
- ext/extconf.rb
|
56
|
+
- lib/gbarcode.so
|
57
|
+
test_files: []
|
58
|
+
|
59
|
+
rdoc_options:
|
60
|
+
- --quiet
|
61
|
+
- --title
|
62
|
+
- Gbarcode
|
63
|
+
- --main
|
64
|
+
- README
|
65
|
+
- --inline-source
|
66
|
+
extra_rdoc_files:
|
67
|
+
- README
|
68
|
+
- CHANGELOG
|
69
|
+
- COPYING
|
70
|
+
executables: []
|
71
|
+
|
72
|
+
extensions: []
|
73
|
+
|
74
|
+
requirements: []
|
75
|
+
|
76
|
+
dependencies: []
|
77
|
+
|