rqrcode-with-patches 0.5.1

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.
metadata ADDED
@@ -0,0 +1,137 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rqrcode-with-patches
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Bjorn Blomqvist and others
9
+ - Duncan Robertson
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2013-01-11 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: chunky_png
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ! '>='
29
+ - !ruby/object:Gem::Version
30
+ version: '0'
31
+ - !ruby/object:Gem::Dependency
32
+ name: rake
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ type: :development
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: bundler
49
+ requirement: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.0.0
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: 1.0.0
63
+ description: ! 'rQRCode is a library for encoding QR Codes. The simple
64
+
65
+ interface allows you to create QR Code data structures
66
+
67
+ ready to be displayed in the way you choose.
68
+
69
+ '
70
+ email:
71
+ - duncan@whomwah.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files:
75
+ - README.md
76
+ - CHANGELOG
77
+ - LICENSE
78
+ files:
79
+ - .gitignore
80
+ - CHANGELOG
81
+ - Gemfile
82
+ - LICENSE
83
+ - README.md
84
+ - Rakefile
85
+ - lib/rqrcode.rb
86
+ - lib/rqrcode/core_ext.rb
87
+ - lib/rqrcode/core_ext/array.rb
88
+ - lib/rqrcode/core_ext/array/behavior.rb
89
+ - lib/rqrcode/core_ext/integer.rb
90
+ - lib/rqrcode/core_ext/integer/bitwise.rb
91
+ - lib/rqrcode/export/png.rb
92
+ - lib/rqrcode/export/svg.rb
93
+ - lib/rqrcode/qrcode.rb
94
+ - lib/rqrcode/qrcode/qr_8bit_byte.rb
95
+ - lib/rqrcode/qrcode/qr_alphanumeric.rb
96
+ - lib/rqrcode/qrcode/qr_bit_buffer.rb
97
+ - lib/rqrcode/qrcode/qr_code.rb
98
+ - lib/rqrcode/qrcode/qr_math.rb
99
+ - lib/rqrcode/qrcode/qr_polynomial.rb
100
+ - lib/rqrcode/qrcode/qr_rs_block.rb
101
+ - lib/rqrcode/qrcode/qr_util.rb
102
+ - lib/rqrcode/version.rb
103
+ - rqrcode.gemspec
104
+ - test/data.rb
105
+ - test/test_rqrcode.rb
106
+ - test/test_rqrcode_export.rb
107
+ homepage: https://github.com/bjornblomqvist/rqrcode
108
+ licenses: []
109
+ post_install_message:
110
+ rdoc_options: []
111
+ require_paths:
112
+ - lib
113
+ required_ruby_version: !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ! '>='
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ segments:
120
+ - 0
121
+ hash: -2561438082696850259
122
+ required_rubygems_version: !ruby/object:Gem::Requirement
123
+ none: false
124
+ requirements:
125
+ - - ! '>='
126
+ - !ruby/object:Gem::Version
127
+ version: 1.3.6
128
+ requirements: []
129
+ rubyforge_project:
130
+ rubygems_version: 1.8.24
131
+ signing_key:
132
+ specification_version: 3
133
+ summary: A library to encode QR Codes
134
+ test_files:
135
+ - test/data.rb
136
+ - test/test_rqrcode.rb
137
+ - test/test_rqrcode_export.rb