jwt-multisig 1.0.0 → 1.0.1
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/.ruby-version +1 -1
- data/Gemfile.lock +11 -11
- data/jwt-multisig.gemspec +2 -2
- data/lib/jwt-multisig.rb +2 -2
- data/lib/jwt-multisig/version.rb +1 -1
- metadata +7 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9133dd14308cfa439eefc400d6be1ce1f6ab5b3e84f7dcca0f2581060b3b1b5c
|
|
4
|
+
data.tar.gz: 8ccdaa3ee2f4248136415ea01939a4a17ac85d9f68231b9785ae44e898c3c515
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7860962c912b2cf8e89b86152037bcc050160141bb98ccef4acc107c37be9ef920800d52d5c55b0081ccdf237de402d3ddc6f44da8b56e482099d5e667a39ab
|
|
7
|
+
data.tar.gz: 97d64ddc536b3ec9cc1e8fe6e3c37257500543855e3b5b5fdab17dedf701424ba9d45d622d685d5f8e187c79aacd64d0331220ad884d9e7530f4a3e4cdcb675a
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.6.3
|
data/Gemfile.lock
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
jwt-multisig (1.0.
|
|
4
|
+
jwt-multisig (1.0.1)
|
|
5
5
|
activesupport (>= 4.0, < 6.0)
|
|
6
|
-
jwt (~> 2.
|
|
6
|
+
jwt (~> 2.2)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activesupport (5.
|
|
11
|
+
activesupport (5.2.3)
|
|
12
12
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
13
13
|
i18n (>= 0.7, < 2)
|
|
14
14
|
minitest (~> 5.1)
|
|
15
15
|
tzinfo (~> 1.1)
|
|
16
|
-
concurrent-ruby (1.
|
|
17
|
-
i18n (1.
|
|
16
|
+
concurrent-ruby (1.1.5)
|
|
17
|
+
i18n (1.6.0)
|
|
18
18
|
concurrent-ruby (~> 1.0)
|
|
19
|
-
jwt (2.1
|
|
19
|
+
jwt (2.2.1)
|
|
20
20
|
memoist (0.16.0)
|
|
21
21
|
minitest (5.11.3)
|
|
22
|
-
power_assert (1.1.
|
|
23
|
-
rake (12.3.
|
|
24
|
-
test-unit (3.
|
|
22
|
+
power_assert (1.1.4)
|
|
23
|
+
rake (12.3.3)
|
|
24
|
+
test-unit (3.3.3)
|
|
25
25
|
power_assert
|
|
26
26
|
thread_safe (0.3.6)
|
|
27
27
|
tzinfo (1.2.5)
|
|
@@ -31,11 +31,11 @@ PLATFORMS
|
|
|
31
31
|
ruby
|
|
32
32
|
|
|
33
33
|
DEPENDENCIES
|
|
34
|
-
bundler (~> 1.
|
|
34
|
+
bundler (~> 1.17)
|
|
35
35
|
jwt-multisig!
|
|
36
36
|
memoist (~> 0.16)
|
|
37
37
|
rake (~> 12.3)
|
|
38
38
|
test-unit (~> 3.1)
|
|
39
39
|
|
|
40
40
|
BUNDLED WITH
|
|
41
|
-
1.
|
|
41
|
+
1.17.2
|
data/jwt-multisig.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
|
|
18
18
|
s.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
s.add_dependency "jwt", "~> 2.
|
|
20
|
+
s.add_dependency "jwt", "~> 2.2"
|
|
21
21
|
s.add_dependency "activesupport", ">= 4.0", "< 6.0"
|
|
22
|
-
s.add_development_dependency "bundler", "~> 1.
|
|
22
|
+
s.add_development_dependency "bundler", "~> 1.17"
|
|
23
23
|
end
|
data/lib/jwt-multisig.rb
CHANGED
|
@@ -240,7 +240,7 @@ module JWT
|
|
|
240
240
|
# @param string [String]
|
|
241
241
|
# @return [String]
|
|
242
242
|
def base64_encode(string)
|
|
243
|
-
JWT::
|
|
243
|
+
JWT::Base64.url_encode(string)
|
|
244
244
|
end
|
|
245
245
|
|
|
246
246
|
#
|
|
@@ -249,7 +249,7 @@ module JWT
|
|
|
249
249
|
# @param string [String]
|
|
250
250
|
# @return [String]
|
|
251
251
|
def base64_decode(string)
|
|
252
|
-
JWT::
|
|
252
|
+
JWT::Base64.url_decode(string)
|
|
253
253
|
end
|
|
254
254
|
end
|
|
255
255
|
end
|
data/lib/jwt-multisig/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jwt-multisig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- RubyKube
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-08-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jwt
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '2.
|
|
19
|
+
version: '2.2'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '2.
|
|
26
|
+
version: '2.2'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: activesupport
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -50,14 +50,14 @@ dependencies:
|
|
|
50
50
|
requirements:
|
|
51
51
|
- - "~>"
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '1.
|
|
53
|
+
version: '1.17'
|
|
54
54
|
type: :development
|
|
55
55
|
prerelease: false
|
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
57
|
requirements:
|
|
58
58
|
- - "~>"
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: '1.
|
|
60
|
+
version: '1.17'
|
|
61
61
|
description: The tool for working with JWT signed by multiple verificators as per
|
|
62
62
|
RFC 7515. Based on the RubyGem «jwt» under the hood.
|
|
63
63
|
email: support@rubykube.io
|
|
@@ -102,8 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
103
|
version: '0'
|
|
104
104
|
requirements: []
|
|
105
|
-
|
|
106
|
-
rubygems_version: 2.7.3
|
|
105
|
+
rubygems_version: 3.0.3
|
|
107
106
|
signing_key:
|
|
108
107
|
specification_version: 4
|
|
109
108
|
summary: The tool for working with multi-signature JWT.
|