usps-support 0.1.3 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e8124e6fa056f251ee287b8a71fcb46b06fe8b2b2e716ab00e22f5b7be3259a1
4
- data.tar.gz: 4059d7b7addb2e7a5c99b1e4cd105d2e73ead0ceda56d627e572234bff30d96e
3
+ metadata.gz: be44cc3fce990710f4d5d05825b2aeb5d20003ab09e74df278b50f4dfaefbcc4
4
+ data.tar.gz: 6f3bd47419d11b346f74d691d4b430042f2421c1da57d8dd61381056bef4c267
5
5
  SHA512:
6
- metadata.gz: e0e1212b3fd4855a95cfa0cf6fc15ec3eb0a0c245cff34cd12568930bf9ae02a96bba2958d30c286f61e9a7f86aec51b79c2b665aa7f8384167e85e2d5ef82c5
7
- data.tar.gz: bd954a9948758abf867f9e2913802a1488f27419a5730164500eabec4fdfde53cb0e0b67400a3e6872355ab57b1c645b8a9ea144f3012fe1f405a62b692446c0
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.3)
4
+ usps-support (0.1.5)
5
5
  sassc-rails
6
- usps-imis-api (~> 0.9.15)
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.9.15)
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/all.rb ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'usps/imis'
4
+ require 'usps/jwt_auth'
5
+ require_relative 'support'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Usps
4
4
  module Support
5
- VERSION = '0.1.3'
5
+ VERSION = '0.1.5'
6
6
  end
7
7
  end
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.3
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.9.15
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.9.15
39
+ version: 0.10.4
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: usps-jwt_auth
42
42
  requirement: !ruby/object:Gem::Requirement
@@ -62,6 +62,7 @@ files:
62
62
  - Gemfile.lock
63
63
  - Rakefile
64
64
  - Readme.md
65
+ - lib/usps/all.rb
65
66
  - lib/usps/support.rb
66
67
  - lib/usps/support/helpers.rb
67
68
  - lib/usps/support/helpers/.rubocop.yml