hotsock 1.0.1 → 1.0.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/README.md +5 -1
- data/hotsock.gemspec +1 -1
- data/lib/hotsock/version.rb +1 -1
- metadata +11 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82fcd71a61208a754d7c415d68fcb92a9f4e35473b42edc9518eee2a38ba5fa8
|
4
|
+
data.tar.gz: 8fe28d6d29452cee9952ac62630e2e1ee04fdc67bb9b6d2d080f9db962396b33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fac7dfb7212390368c1b849a0d0a4a5e062d49b672258384da19e3784c30510e610233dce1a6a98a697972974b06fdf00108133155439b850038c2cfaa7c7ce
|
7
|
+
data.tar.gz: a5a2fe48432b8e27b591649763b357b1362adeac0236990aec0834d302de4e111b745deac7a8370aee67297dedf0e166bf8c2e155e9217987720ad976c761ac9
|
data/README.md
CHANGED
@@ -127,7 +127,11 @@ Hotsock.configure do |config|
|
|
127
127
|
# using environment variables, Rails encrypted credentials, AWS Parameter
|
128
128
|
# Store, etc. and loading this key from there. For ES256 (ECDSA using P-256
|
129
129
|
# and SHA-256), this key must be in PEM format. Don't use the key below!
|
130
|
-
# Generate your own!
|
130
|
+
# Generate your own!
|
131
|
+
#
|
132
|
+
# If you're storing this key in an environment variable, you may want to
|
133
|
+
# store it Base64-encoded in ENV and decode it here because environment files
|
134
|
+
# sometimes have a hard time with newline characters. (optional)
|
131
135
|
config.issuer_private_key = "-----BEGIN EC PRIVATE KEY-----\nMIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg72ab3fXPvtD2iIQQ\n/RWiZh8WA6T9u6JNhEuy1DPSFpuhRANCAASmEDhCts7/LkmooXH1tMhyh9Qn94e3\ny3e/UtmnnAYMPwro8iySvqEUrYaDUqQ3iMjYpf+mvxOFmCy97MsBj/pu\n-----END EC PRIVATE KEY-----"
|
132
136
|
|
133
137
|
# The algorithm to use when signing with the above key. Defaults to ES256.
|
data/hotsock.gemspec
CHANGED
data/lib/hotsock/version.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,34 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hotsock
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Miller
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: jwt
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
16
15
|
requirements:
|
17
|
-
- - "
|
16
|
+
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
18
|
version: '2.7'
|
19
|
+
- - "<"
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '4.0'
|
20
22
|
type: :runtime
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
23
25
|
requirements:
|
24
|
-
- - "
|
26
|
+
- - ">="
|
25
27
|
- !ruby/object:Gem::Version
|
26
28
|
version: '2.7'
|
29
|
+
- - "<"
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: '4.0'
|
27
32
|
- !ruby/object:Gem::Dependency
|
28
33
|
name: aws-sdk-lambda
|
29
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,7 +72,6 @@ metadata:
|
|
67
72
|
documentation_uri: https://github.com/hotsock/hotsock-ruby/blob/main/README.md
|
68
73
|
changelog_uri: https://github.com/hotsock/hotsock-ruby/releases
|
69
74
|
source_code_uri: https://github.com/hotsock/hotsock-ruby
|
70
|
-
post_install_message:
|
71
75
|
rdoc_options: []
|
72
76
|
require_paths:
|
73
77
|
- lib
|
@@ -82,8 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
86
|
- !ruby/object:Gem::Version
|
83
87
|
version: '0'
|
84
88
|
requirements: []
|
85
|
-
rubygems_version: 3.
|
86
|
-
signing_key:
|
89
|
+
rubygems_version: 3.6.7
|
87
90
|
specification_version: 4
|
88
91
|
summary: Ruby bindings for the Hotsock message publishing APIs and JWT signing
|
89
92
|
test_files: []
|