rqr19 0.2.3

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 (7) hide show
  1. data/.gitignore +2 -0
  2. data/Gemfile +4 -0
  3. data/Rakefile +2 -0
  4. data/lib/rqr/version.rb +3 -0
  5. data/lib/rqr.rb +1589 -0
  6. data/rqr.gemspec +24 -0
  7. metadata +64 -0
data/rqr.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
3
+ require 'rqr/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "rqr19"
7
+ s.version = Rqr::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["NuTheory"]
10
+ s.email = ["drush@nutheory.com"]
11
+ s.homepage = "http://rubygems.org/gems/rqr"
12
+ s.summary = "RQR 2D barcode generator updated for Ruby 1.9"
13
+ s.description = "Original code by Ryota Maruko, and Soezima Keiko"
14
+
15
+ s.required_rubygems_version = ">= 1.3.6"
16
+ s.rubyforge_project = "rqr19"
17
+
18
+ s.add_development_dependency "bundler", ">= 1.0.0.rc.5"
19
+ s.require_paths = ['lib']
20
+ # s.files = ['Rakefile', 'rqr.gemspec']
21
+ # s.files += Dir['lib/*.rb'] + Dir['lib/*.cpp'] + Dir['lib/*.h'] + Dir['lib/*.i'] + Dir['lib/*.cxx']
22
+ s.files = `git ls-files`.split("\n")
23
+ s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
24
+ end
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rqr19
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.3
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - NuTheory
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-06-23 00:00:00.000000000 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bundler
17
+ requirement: &2159281280 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.0.rc.5
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: *2159281280
26
+ description: Original code by Ryota Maruko, and Soezima Keiko
27
+ email:
28
+ - drush@nutheory.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - .gitignore
34
+ - Gemfile
35
+ - Rakefile
36
+ - lib/rqr.rb
37
+ - lib/rqr/version.rb
38
+ - rqr.gemspec
39
+ has_rdoc: true
40
+ homepage: http://rubygems.org/gems/rqr
41
+ licenses: []
42
+ post_install_message:
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ none: false
48
+ requirements:
49
+ - - ! '>='
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: 1.3.6
58
+ requirements: []
59
+ rubyforge_project: rqr19
60
+ rubygems_version: 1.6.2
61
+ signing_key:
62
+ specification_version: 3
63
+ summary: RQR 2D barcode generator updated for Ruby 1.9
64
+ test_files: []