barcodeservice 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,5 +1,5 @@
1
1
  source :rubygems
2
2
 
3
3
  gem 'gbarcode', '0.98.16'
4
- gem 'sinatra'
4
+ gem 'sinatra', '1.0.0'
5
5
 
@@ -0,0 +1,14 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ gbarcode (0.98.16)
5
+ rack (1.2.1)
6
+ sinatra (1.0)
7
+ rack (>= 1.0)
8
+
9
+ PLATFORMS
10
+ ruby
11
+
12
+ DEPENDENCIES
13
+ gbarcode (= 0.98.16)
14
+ sinatra (= 1.0.0)
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Jack Danger Canty
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
1
+ 1.3.1
@@ -1,52 +1,58 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{barcodeservice}
8
- s.version = "1.3.0"
8
+ s.version = "1.3.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jack Danger Canty"]
12
- s.date = %q{2011-02-07}
12
+ s.date = %q{2011-04-10}
13
13
  s.description = %q{Run your own barcode image generator for free on Heroku.com}
14
14
  s.email = %q{gitcommit@6brand.com}
15
15
  s.extra_rdoc_files = [
16
+ "LICENSE",
16
17
  "README.markdown"
17
18
  ]
18
19
  s.files = [
19
20
  "Gemfile",
20
- "README.markdown",
21
- "Rakefile",
22
- "VERSION",
23
- "barcodeservice.gemspec",
24
- "config.ru",
25
- "lib/barcode_service.rb",
26
- "lib/barcodeservice.rb",
27
- "pkg/barcodeservice-1.2.1.gem",
28
- "test.rb"
21
+ "Gemfile.lock",
22
+ "LICENSE",
23
+ "README.markdown",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "barcodeservice.gemspec",
27
+ "config.ru",
28
+ "lib/barcode_service.rb",
29
+ "lib/barcodeservice.rb",
30
+ "test.rb"
29
31
  ]
30
32
  s.homepage = %q{http://github.com/JackDanger/barcodeservice}
31
- s.rdoc_options = ["--charset=UTF-8"]
32
33
  s.require_paths = ["lib"]
33
- s.rubygems_version = %q{1.3.7}
34
+ s.rubygems_version = %q{1.4.2}
34
35
  s.summary = %q{lightwight barcode image server running on Heroku.com}
35
36
 
36
37
  if s.respond_to? :specification_version then
37
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
38
38
  s.specification_version = 3
39
39
 
40
40
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
41
+ s.add_runtime_dependency(%q<gbarcode>, ["= 0.98.16"])
42
+ s.add_runtime_dependency(%q<sinatra>, ["= 1.0.0"])
41
43
  s.add_development_dependency(%q<shoulda>, [">= 0"])
42
44
  s.add_runtime_dependency(%q<sinatra>, [">= 0"])
43
45
  s.add_runtime_dependency(%q<gbarcode>, [">= 0"])
44
46
  else
47
+ s.add_dependency(%q<gbarcode>, ["= 0.98.16"])
48
+ s.add_dependency(%q<sinatra>, ["= 1.0.0"])
45
49
  s.add_dependency(%q<shoulda>, [">= 0"])
46
50
  s.add_dependency(%q<sinatra>, [">= 0"])
47
51
  s.add_dependency(%q<gbarcode>, [">= 0"])
48
52
  end
49
53
  else
54
+ s.add_dependency(%q<gbarcode>, ["= 0.98.16"])
55
+ s.add_dependency(%q<sinatra>, ["= 1.0.0"])
50
56
  s.add_dependency(%q<shoulda>, [">= 0"])
51
57
  s.add_dependency(%q<sinatra>, [">= 0"])
52
58
  s.add_dependency(%q<gbarcode>, [">= 0"])
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: barcodeservice
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
5
- prerelease: false
4
+ hash: 25
5
+ prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 3
9
- - 0
10
- version: 1.3.0
9
+ - 1
10
+ version: 1.3.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jack Danger Canty
@@ -15,13 +15,44 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-02-07 00:00:00 -08:00
18
+ date: 2011-04-10 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
- name: shoulda
22
+ type: :runtime
23
+ version_requirements: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - "="
27
+ - !ruby/object:Gem::Version
28
+ hash: 439
29
+ segments:
30
+ - 0
31
+ - 98
32
+ - 16
33
+ version: 0.98.16
34
+ requirement: *id001
35
+ prerelease: false
36
+ name: gbarcode
37
+ - !ruby/object:Gem::Dependency
38
+ type: :runtime
39
+ version_requirements: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - "="
43
+ - !ruby/object:Gem::Version
44
+ hash: 23
45
+ segments:
46
+ - 1
47
+ - 0
48
+ - 0
49
+ version: 1.0.0
50
+ requirement: *id002
23
51
  prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
52
+ name: sinatra
53
+ - !ruby/object:Gem::Dependency
54
+ type: :development
55
+ version_requirements: &id003 !ruby/object:Gem::Requirement
25
56
  none: false
26
57
  requirements:
27
58
  - - ">="
@@ -30,12 +61,12 @@ dependencies:
30
61
  segments:
31
62
  - 0
32
63
  version: "0"
33
- type: :development
34
- version_requirements: *id001
35
- - !ruby/object:Gem::Dependency
36
- name: sinatra
64
+ requirement: *id003
37
65
  prerelease: false
38
- requirement: &id002 !ruby/object:Gem::Requirement
66
+ name: shoulda
67
+ - !ruby/object:Gem::Dependency
68
+ type: :runtime
69
+ version_requirements: &id004 !ruby/object:Gem::Requirement
39
70
  none: false
40
71
  requirements:
41
72
  - - ">="
@@ -44,12 +75,12 @@ dependencies:
44
75
  segments:
45
76
  - 0
46
77
  version: "0"
47
- type: :runtime
48
- version_requirements: *id002
49
- - !ruby/object:Gem::Dependency
50
- name: gbarcode
78
+ requirement: *id004
51
79
  prerelease: false
52
- requirement: &id003 !ruby/object:Gem::Requirement
80
+ name: sinatra
81
+ - !ruby/object:Gem::Dependency
82
+ type: :runtime
83
+ version_requirements: &id005 !ruby/object:Gem::Requirement
53
84
  none: false
54
85
  requirements:
55
86
  - - ">="
@@ -58,8 +89,9 @@ dependencies:
58
89
  segments:
59
90
  - 0
60
91
  version: "0"
61
- type: :runtime
62
- version_requirements: *id003
92
+ requirement: *id005
93
+ prerelease: false
94
+ name: gbarcode
63
95
  description: Run your own barcode image generator for free on Heroku.com
64
96
  email: gitcommit@6brand.com
65
97
  executables: []
@@ -67,9 +99,12 @@ executables: []
67
99
  extensions: []
68
100
 
69
101
  extra_rdoc_files:
102
+ - LICENSE
70
103
  - README.markdown
71
104
  files:
72
105
  - Gemfile
106
+ - Gemfile.lock
107
+ - LICENSE
73
108
  - README.markdown
74
109
  - Rakefile
75
110
  - VERSION
@@ -77,15 +112,14 @@ files:
77
112
  - config.ru
78
113
  - lib/barcode_service.rb
79
114
  - lib/barcodeservice.rb
80
- - pkg/barcodeservice-1.2.1.gem
81
115
  - test.rb
82
116
  has_rdoc: true
83
117
  homepage: http://github.com/JackDanger/barcodeservice
84
118
  licenses: []
85
119
 
86
120
  post_install_message:
87
- rdoc_options:
88
- - --charset=UTF-8
121
+ rdoc_options: []
122
+
89
123
  require_paths:
90
124
  - lib
91
125
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -109,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
143
  requirements: []
110
144
 
111
145
  rubyforge_project:
112
- rubygems_version: 1.3.7
146
+ rubygems_version: 1.4.2
113
147
  signing_key:
114
148
  specification_version: 3
115
149
  summary: lightwight barcode image server running on Heroku.com
Binary file