qr 0.0.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 (4) hide show
  1. data/lib/qr.rb +6 -0
  2. data/lib/qr/version.rb +4 -0
  3. data/qr.gemspec +23 -0
  4. metadata +49 -0
@@ -0,0 +1,6 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+
3
+ module QR
4
+ autoload :VERSION, 'qr/version'
5
+ end
6
+
@@ -0,0 +1,4 @@
1
+ module QR
2
+ VERSION = '0.0.0'
3
+ end
4
+
@@ -0,0 +1,23 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+
3
+ require 'lib/qr/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'qr'
7
+ s.version = QR::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.date = '2011-03-25'
10
+
11
+ s.author = 'Tobias Bühlmann'
12
+ s.email = 'tobias.buehlmann@gmx.de'
13
+ # s.homepage = 'http://github.com/tbuehlmann/qr'
14
+ s.summary = 'QR-Code generation gem'
15
+ s.description = 'This gem generates QR-Codes.'
16
+
17
+ s.files = %w(
18
+ lib/qr.rb
19
+ lib/qr/version.rb
20
+ qr.gemspec
21
+ )
22
+ end
23
+
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: qr
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Tobias Bühlmann
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-03-25 00:00:00.000000000 +01:00
13
+ default_executable:
14
+ dependencies: []
15
+ description: This gem generates QR-Codes.
16
+ email: tobias.buehlmann@gmx.de
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - lib/qr.rb
22
+ - lib/qr/version.rb
23
+ - qr.gemspec
24
+ has_rdoc: true
25
+ homepage:
26
+ licenses: []
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ none: false
33
+ requirements:
34
+ - - ! '>='
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ! '>='
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubyforge_project:
45
+ rubygems_version: 1.6.2
46
+ signing_key:
47
+ specification_version: 3
48
+ summary: QR-Code generation gem
49
+ test_files: []