usps-support 0.1.4 → 0.1.5
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 +3 -3
- data/Readme.md +18 -0
- data/lib/usps/support/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be44cc3fce990710f4d5d05825b2aeb5d20003ab09e74df278b50f4dfaefbcc4
|
|
4
|
+
data.tar.gz: 6f3bd47419d11b346f74d691d4b430042f2421c1da57d8dd61381056bef4c267
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c33290f5e60460e176bb479ec7883354f9e8e34a9b1d234d4feae0a13d43747cdc7f022ed22bd1e898620222ff0984060ab768c6ca3da681bc26beed4321c60e
|
|
7
|
+
data.tar.gz: 4527289d50541292afa7e80b46258b4b28338d600b9e446d7c6baf6fd102de5a235b26c5874bc895495f4be2487681192fe10c96333c42f27ba4b847fc2e4f14
|
data/Gemfile.lock
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
usps-support (0.1.
|
|
4
|
+
usps-support (0.1.5)
|
|
5
5
|
sassc-rails
|
|
6
|
-
usps-imis-api (~> 0.
|
|
6
|
+
usps-imis-api (~> 0.10.4)
|
|
7
7
|
usps-jwt_auth (~> 1.0.0)
|
|
8
8
|
|
|
9
9
|
GEM
|
|
@@ -189,7 +189,7 @@ GEM
|
|
|
189
189
|
unicode-emoji (4.1.0)
|
|
190
190
|
uri (1.0.4)
|
|
191
191
|
useragent (0.16.11)
|
|
192
|
-
usps-imis-api (0.
|
|
192
|
+
usps-imis-api (0.10.4)
|
|
193
193
|
activesupport (~> 8.0)
|
|
194
194
|
usps-jwt_auth (1.0.0)
|
|
195
195
|
activesupport (~> 8.0)
|
data/Readme.md
CHANGED
|
@@ -14,6 +14,24 @@ gem 'usps-support'
|
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
16
16
|
|
|
17
|
+
```ruby
|
|
18
|
+
# Include everything
|
|
19
|
+
require 'usps/all'
|
|
20
|
+
|
|
21
|
+
# Include helpers and general models
|
|
22
|
+
require 'usps/support'
|
|
23
|
+
|
|
24
|
+
# Include helpers and general models separately
|
|
25
|
+
require 'usps/support/helpers'
|
|
26
|
+
require 'usps/support/models'
|
|
27
|
+
|
|
28
|
+
# Include the iMIS API
|
|
29
|
+
require 'usps/imis'
|
|
30
|
+
|
|
31
|
+
# Include JWT Authentication
|
|
32
|
+
require 'usps/jwt_auth'
|
|
33
|
+
```
|
|
34
|
+
|
|
17
35
|
```ruby
|
|
18
36
|
module ApplicationHelper
|
|
19
37
|
include Usps::Supoprt::Helpers::BadgesHelper
|
data/lib/usps/support/version.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.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julian Fiander
|
|
@@ -29,14 +29,14 @@ dependencies:
|
|
|
29
29
|
requirements:
|
|
30
30
|
- - "~>"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.
|
|
32
|
+
version: 0.10.4
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 0.
|
|
39
|
+
version: 0.10.4
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: usps-jwt_auth
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|