nexmo-jwt 0.1.1 → 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/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/lib/nexmo-jwt/jwt.rb +2 -2
- data/lib/nexmo-jwt/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6fbdfb02dff6aba721e5fa7d5016f605a421a25c3bd6840d66ef73257e6e9453
|
|
4
|
+
data.tar.gz: 5fc7fe77bfe08c619860c76be068aa7d3420762b809a67871628c56ea56b812b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb98b81ae5a9dafa9c96ae5a829777383b18b4f570da39311022bc37844df614aeec4d4a6bfce8b69eb5b5c566c43b2d54c91c350b8209bb8809d42e4b91fd2a
|
|
7
|
+
data.tar.gz: 1cc0fb087625811f7a563c884d3435dff71ca45d10fadf95326cc3fff2721dbde75ed0d956001caa4db033905105d03733f2ba3b3330367ba5fa217e83d11f93
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -68,7 +68,7 @@ Example providing custom configuration options:
|
|
|
68
68
|
|
|
69
69
|
Nexmo Ruby JWT documentation: https://www.rubydoc.info/github/nexmo/nexmo-jwt
|
|
70
70
|
|
|
71
|
-
Nexmo Ruby code examples: https://github.com/
|
|
71
|
+
Nexmo Ruby code examples: https://github.com/Vonage/vonage-ruby-code-snippets
|
|
72
72
|
|
|
73
73
|
Nexmo API reference: https://developer.nexmo.com/api
|
|
74
74
|
|
data/lib/nexmo-jwt/jwt.rb
CHANGED
|
@@ -23,9 +23,9 @@ module Nexmo
|
|
|
23
23
|
application_id: generator.application_id,
|
|
24
24
|
typ: typ
|
|
25
25
|
}
|
|
26
|
-
hash.merge!(
|
|
26
|
+
hash.merge!(generator.paths) if generator.paths
|
|
27
27
|
hash.merge!(nbf: generator.nbf) if generator.nbf
|
|
28
28
|
hash
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
|
-
end
|
|
31
|
+
end
|
data/lib/nexmo-jwt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nexmo-jwt
|
|
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
|
- Nexmo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-10-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jwt
|