USPS-intelligent-barcode 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ Y2FmNTI4YzkwOTU2NGJhY2VhZWJhNWIxMDUzMmQ4N2Q4YzgxNTBlMQ==
5
+ data.tar.gz: !binary |-
6
+ NDNmMzY4ZThhNjgwNDg0YzkyNTBiMmYwYzcyOWEwYmM1OGE2MDI5ZA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ OTU5YzQ0YmNjNmFmZGQ0Yzk3ZDYyYjYyMzk0MjU1NmVjZmM2MTMxZWIyMGJj
10
+ YmQzZDkwZTJjZjEzZDIxM2UxYWQ3NDRmMjk1NDAyYzMwODY5ODJmOWI0ZTMz
11
+ NTA3YzFlNWZkODkyYTEzM2NiODU2NWFkMjEyMmQ0YjA1YThkYzk=
12
+ data.tar.gz: !binary |-
13
+ MGUxMmYwMjFiMTJkMzE3MmYzN2E5ZTczNjZjMzRlMWVmOGQzZTUwOTc2MzQw
14
+ YjQxMzA0NzdlNzYzYjljNjM4OTY3OTQwZWY0MTljYmM2NzEyZGQwZWMyNDc1
15
+ ZWYzYWNjOTAyNjJlNTY2NGY0YjE0MDU1MjMwYzI3M2UyNzJiZWE=
@@ -40,3 +40,6 @@ DEPENDENCIES
40
40
  rspec
41
41
  simplecov
42
42
  yard
43
+
44
+ BUNDLED WITH
45
+ 1.10.3
@@ -1,3 +1,9 @@
1
+ = DEPRECATED
2
+
3
+ This gem has been renamed to usps_intelligent_barcode and will no
4
+ longer be maintained. Please switch to usps_intelligent_barcode as
5
+ soon as possible.
6
+
1
7
  = USPS-intelligent-barcode
2
8
 
3
9
  USPS-intelligent-barcode is a pure ruby gem to generate a USPS
data/Rakefile CHANGED
@@ -26,6 +26,13 @@ Jeweler::Tasks.new do |gem|
26
26
  "fonts.")
27
27
  gem.email = "wconrad@yagni.com"
28
28
  gem.authors = ["Wayne Conrad"]
29
+ gem.post_install_message = <<-MESSAGE
30
+ The USPS-intelligent-barcode gem has been deprecated and has been
31
+ replaced by usps-intelligent-barcode.
32
+ See: https://rubygems.org/gems/usps_intelligent_barcode
33
+ And: https://github.com/wconrad/usps_intellgent_barcode
34
+ MESSAGE
35
+
29
36
  # dependencies defined in Gemfile
30
37
  end
31
38
  Jeweler::RubygemsDotOrgTasks.new
@@ -2,14 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
+ # stub: USPS-intelligent-barcode 0.2.6 ruby lib
5
6
 
6
7
  Gem::Specification.new do |s|
7
8
  s.name = "USPS-intelligent-barcode"
8
- s.version = "0.2.5"
9
+ s.version = "0.2.6"
9
10
 
10
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
11
13
  s.authors = ["Wayne Conrad"]
12
- s.date = "2013-02-28"
14
+ s.date = "2015-06-13"
13
15
  s.description = "A pure Ruby library to generate a USPS Intelligent Mail barcode. It generates the string of characters to print with one of the USPS Intelligent Mail barcode fonts."
14
16
  s.email = "wconrad@yagni.com"
15
17
  s.extra_rdoc_files = [
@@ -59,12 +61,12 @@ Gem::Specification.new do |s|
59
61
  ]
60
62
  s.homepage = "http://github.com/wconrad/USPS-intelligent-barcode"
61
63
  s.licenses = ["MIT"]
62
- s.require_paths = ["lib"]
63
- s.rubygems_version = "1.8.25"
64
+ s.post_install_message = " The USPS-intelligent-barcode gem has been deprecated and has been\n replaced by usps-intelligent-barcode.\n See: https://rubygems.org/gems/usps_intelligent_barcode\n And: https://github.com/wconrad/usps_intellgent_barcode\n"
65
+ s.rubygems_version = "2.4.3"
64
66
  s.summary = "Generates a USPS Intelligent Mail Barcode."
65
67
 
66
68
  if s.respond_to? :specification_version then
67
- s.specification_version = 3
69
+ s.specification_version = 4
68
70
 
69
71
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
70
72
  s.add_runtime_dependency(%q<andand>, ["~> 1.3.3"])
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.5
1
+ 0.2.6
@@ -15,3 +15,7 @@ require 'USPS-intelligent-barcode/numeric_conversions'
15
15
  require 'USPS-intelligent-barcode/routing_code'
16
16
  require 'USPS-intelligent-barcode/serial_number'
17
17
  require 'USPS-intelligent-barcode/service_type'
18
+
19
+ warn "[DEPRECATION] This gem has been renamed to usps_intelligent_barcode "\
20
+ "and will no longer be supported. Please switch to "\
21
+ "usps_intelligent_barcode as soon as possible."
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: USPS-intelligent-barcode
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
5
- prerelease:
4
+ version: 0.2.6
6
5
  platform: ruby
7
6
  authors:
8
7
  - Wayne Conrad
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-02-28 00:00:00.000000000 Z
11
+ date: 2015-06-13 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: andand
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
@@ -30,7 +27,6 @@ dependencies:
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: memoizer
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ~>
36
32
  - !ruby/object:Gem::Version
@@ -38,7 +34,6 @@ dependencies:
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ~>
44
39
  - !ruby/object:Gem::Version
@@ -46,7 +41,6 @@ dependencies:
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: jeweler
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
45
  - - ! '>='
52
46
  - !ruby/object:Gem::Version
@@ -54,7 +48,6 @@ dependencies:
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
52
  - - ! '>='
60
53
  - !ruby/object:Gem::Version
@@ -62,7 +55,6 @@ dependencies:
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rspec
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
59
  - - ! '>='
68
60
  - !ruby/object:Gem::Version
@@ -70,7 +62,6 @@ dependencies:
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
66
  - - ! '>='
76
67
  - !ruby/object:Gem::Version
@@ -78,7 +69,6 @@ dependencies:
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: simplecov
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
73
  - - ! '>='
84
74
  - !ruby/object:Gem::Version
@@ -86,7 +76,6 @@ dependencies:
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
80
  - - ! '>='
92
81
  - !ruby/object:Gem::Version
@@ -94,7 +83,6 @@ dependencies:
94
83
  - !ruby/object:Gem::Dependency
95
84
  name: yard
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
87
  - - ! '>='
100
88
  - !ruby/object:Gem::Version
@@ -102,7 +90,6 @@ dependencies:
102
90
  type: :development
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
94
  - - ! '>='
108
95
  - !ruby/object:Gem::Version
@@ -110,7 +97,6 @@ dependencies:
110
97
  - !ruby/object:Gem::Dependency
111
98
  name: rake
112
99
  requirement: !ruby/object:Gem::Requirement
113
- none: false
114
100
  requirements:
115
101
  - - ! '>='
116
102
  - !ruby/object:Gem::Version
@@ -118,7 +104,6 @@ dependencies:
118
104
  type: :development
119
105
  prerelease: false
120
106
  version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
107
  requirements:
123
108
  - - ! '>='
124
109
  - !ruby/object:Gem::Version
@@ -175,29 +160,28 @@ files:
175
160
  homepage: http://github.com/wconrad/USPS-intelligent-barcode
176
161
  licenses:
177
162
  - MIT
178
- post_install_message:
163
+ metadata: {}
164
+ post_install_message: ! " The USPS-intelligent-barcode gem has been deprecated
165
+ and has been\n replaced by usps-intelligent-barcode.\n See: https://rubygems.org/gems/usps_intelligent_barcode\n
166
+ \ And: https://github.com/wconrad/usps_intellgent_barcode\n"
179
167
  rdoc_options: []
180
168
  require_paths:
181
169
  - lib
182
170
  required_ruby_version: !ruby/object:Gem::Requirement
183
- none: false
184
171
  requirements:
185
172
  - - ! '>='
186
173
  - !ruby/object:Gem::Version
187
174
  version: '0'
188
- segments:
189
- - 0
190
- hash: 643176531
191
175
  required_rubygems_version: !ruby/object:Gem::Requirement
192
- none: false
193
176
  requirements:
194
177
  - - ! '>='
195
178
  - !ruby/object:Gem::Version
196
179
  version: '0'
197
180
  requirements: []
198
181
  rubyforge_project:
199
- rubygems_version: 1.8.25
182
+ rubygems_version: 2.4.3
200
183
  signing_key:
201
- specification_version: 3
184
+ specification_version: 4
202
185
  summary: Generates a USPS Intelligent Mail Barcode.
203
186
  test_files: []
187
+ has_rdoc: