usps-support 0.1.0 → 0.1.2
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +18 -1
- data/lib/usps/support/version.rb +1 -1
- data/lib/usps/support.rb +2 -1
- metadata +29 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb14f0831234839f629b96a7b0f1a2d2eb359f3b3d90bc411acf46a1674d2cd4
|
|
4
|
+
data.tar.gz: 12ac69131c0f5a30e3cc36fc2e1760b850fb2418044dd6bfe34a471e7e84a675
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd425c7c1a71bc2c9509956c46857bd973e7744bc85744aacf4f0a5d5d09a1badb57116030100e05cfcffcead0d3de5ed2f08ba22463c83ab1db8e4aea62825c
|
|
7
|
+
data.tar.gz: e7a23128600ccecc5e1373cdf5efbeb224b5c296ae780642e7efb5ca40580997ba8cc99e7f0d21f5bb8ff711a612e18d1966ef85797dbafe650d74e7d9f94ec1
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
usps-support (0.1.
|
|
4
|
+
usps-support (0.1.2)
|
|
5
5
|
sassc-rails
|
|
6
|
+
usps-imis-api (~> 0.9.15)
|
|
7
|
+
usps-jwt_auth (~> 1.0.0)
|
|
6
8
|
|
|
7
9
|
GEM
|
|
8
10
|
remote: https://rubygems.org/
|
|
@@ -40,6 +42,7 @@ GEM
|
|
|
40
42
|
base64 (0.3.0)
|
|
41
43
|
bigdecimal (3.3.1)
|
|
42
44
|
builder (3.3.0)
|
|
45
|
+
colorize (1.1.0)
|
|
43
46
|
concurrent-ruby (1.3.5)
|
|
44
47
|
connection_pool (2.5.4)
|
|
45
48
|
crass (1.0.6)
|
|
@@ -50,6 +53,8 @@ GEM
|
|
|
50
53
|
erb (5.1.3)
|
|
51
54
|
erubi (1.13.1)
|
|
52
55
|
ffi (1.17.2-arm64-darwin)
|
|
56
|
+
ffi (1.17.2-x86_64-linux-gnu)
|
|
57
|
+
fileutils (1.7.3)
|
|
53
58
|
i18n (1.14.7)
|
|
54
59
|
concurrent-ruby (~> 1.0)
|
|
55
60
|
io-console (0.8.1)
|
|
@@ -58,6 +63,8 @@ GEM
|
|
|
58
63
|
rdoc (>= 4.0.0)
|
|
59
64
|
reline (>= 0.4.2)
|
|
60
65
|
json (2.15.2)
|
|
66
|
+
jwt (3.1.2)
|
|
67
|
+
base64
|
|
61
68
|
language_server-protocol (3.17.0.5)
|
|
62
69
|
lint_roller (1.1.0)
|
|
63
70
|
logger (1.7.0)
|
|
@@ -67,6 +74,8 @@ GEM
|
|
|
67
74
|
minitest (5.26.0)
|
|
68
75
|
nokogiri (1.18.10-arm64-darwin)
|
|
69
76
|
racc (~> 1.4)
|
|
77
|
+
nokogiri (1.18.10-x86_64-linux-gnu)
|
|
78
|
+
racc (~> 1.4)
|
|
70
79
|
parallel (1.27.0)
|
|
71
80
|
parser (3.3.10.0)
|
|
72
81
|
ast (~> 2.4.1)
|
|
@@ -180,10 +189,18 @@ GEM
|
|
|
180
189
|
unicode-emoji (4.1.0)
|
|
181
190
|
uri (1.0.4)
|
|
182
191
|
useragent (0.16.11)
|
|
192
|
+
usps-imis-api (0.9.15)
|
|
193
|
+
activesupport (~> 8.0)
|
|
194
|
+
usps-jwt_auth (1.0.0)
|
|
195
|
+
activesupport (~> 8.0)
|
|
196
|
+
colorize (~> 1.1)
|
|
197
|
+
fileutils (~> 1.7)
|
|
198
|
+
jwt (~> 3.1)
|
|
183
199
|
zeitwerk (2.7.3)
|
|
184
200
|
|
|
185
201
|
PLATFORMS
|
|
186
202
|
arm64-darwin-24
|
|
203
|
+
x86_64-linux
|
|
187
204
|
|
|
188
205
|
DEPENDENCIES
|
|
189
206
|
irb
|
data/lib/usps/support/version.rb
CHANGED
data/lib/usps/support.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: usps-support
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julian Fiander
|
|
@@ -23,6 +23,34 @@ dependencies:
|
|
|
23
23
|
- - ">="
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
25
|
version: '0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: usps-imis-api
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 0.9.15
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 0.9.15
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: usps-jwt_auth
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 1.0.0
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: 1.0.0
|
|
26
54
|
description: Shared support for USPS Rails applications
|
|
27
55
|
email:
|
|
28
56
|
- jsfiander@gmail.com
|