graphql_authorizer 1.0.5 → 1.0.6
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 +1 -1
- data/lib/graphql_authorizer/request.rb +2 -2
- data/lib/graphql_authorizer/version.rb +1 -1
- 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: 4c4f9533fbd428a7a6ba04bf21bf2a88ca91b55ce948fe8e6279130bb4f24011
|
|
4
|
+
data.tar.gz: 8b942c44b920142cce2a41e42c24d2f481b594f60d7f90efbb1ae9a1fcac7933
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 055a838f1e2be583b252d5e71eddde2dcd49c7cc16c41105ca6e9236fdee9cc4442f752abb60e150c585e50df3f1cba4174bf199c567d18a00a6b96b93290bf5
|
|
7
|
+
data.tar.gz: 173afc4d00f4b6c13762ed7bf9793bb004e2041ae38abac1eeb901e394f048b23ce061b7af64e4ffe3f15eba876dfd2f164a2f2a6aff0a9c08987d9598c40d30
|
data/Gemfile.lock
CHANGED
|
@@ -11,8 +11,8 @@ module GraphQLAuthorizer
|
|
|
11
11
|
include GraphQLAuthorizer::Validator::Timestamp
|
|
12
12
|
|
|
13
13
|
def initialize(sig:, timestamp:)
|
|
14
|
-
@sig = sig
|
|
15
|
-
@timestamp = timestamp
|
|
14
|
+
@sig = sig.to_s
|
|
15
|
+
@timestamp = timestamp.to_s
|
|
16
16
|
@errors = []
|
|
17
17
|
config = GraphQLAuthorizer.configuration
|
|
18
18
|
raise_missing_configuration unless config
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphql_authorizer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter John Alvarado
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-09-
|
|
11
|
+
date: 2018-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: openssl
|