vaas 2.0.0 → 3.0.0
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/examples/example_with_reconnect.rb +1 -1
- data/examples/simple_example.rb +1 -1
- data/lib/vaas/vaas_main.rb +1 -1
- data/lib/vaas/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: 86c4b8c8ed151fe77da284d60d07156dbc84b40346fcad1ef64162ef7a15cb14
|
|
4
|
+
data.tar.gz: 1fdce2973ded2543f3ff4e808d8263371c7add9ea7b5bee6f62d146125ad7763
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf6267e4f1c176b9c4dc3b760d8ec54fa475a73fef613d8c8220954cdadbc73f23a78baa529b338dd1a711051b8462471961443ea4c9ab94a69a8f2b3eb8a447
|
|
7
|
+
data.tar.gz: 8fe1af11c62026f93bf03e30353b826f0f0d9c99d481b3f8494e5da59e155b2a599dc362f78c3fc8df6009d15566754adc55fdd86f80b377ac924472535a2e1d
|
|
@@ -10,7 +10,7 @@ def main
|
|
|
10
10
|
authenticator = VAAS::ClientCredentialsGrantAuthenticator.new(
|
|
11
11
|
CLIENT_ID,
|
|
12
12
|
CLIENT_SECRET,
|
|
13
|
-
"https://
|
|
13
|
+
"https://account.gdata.de/realms/vaas-production/protocol/openid-connect/token"
|
|
14
14
|
)
|
|
15
15
|
|
|
16
16
|
# create a vaas object and get a token to authenticate
|
data/examples/simple_example.rb
CHANGED
|
@@ -10,7 +10,7 @@ def main
|
|
|
10
10
|
authenticator = VAAS::ClientCredentialsGrantAuthenticator.new(
|
|
11
11
|
CLIENT_ID,
|
|
12
12
|
CLIENT_SECRET,
|
|
13
|
-
"https://
|
|
13
|
+
"https://account.gdata.de/realms/vaas-production/protocol/openid-connect/token"
|
|
14
14
|
)
|
|
15
15
|
|
|
16
16
|
# create a vaas object and get a token to authenticate
|
data/lib/vaas/vaas_main.rb
CHANGED
|
@@ -14,7 +14,7 @@ require_relative 'vaas_errors'
|
|
|
14
14
|
module VAAS
|
|
15
15
|
class VaasMain
|
|
16
16
|
|
|
17
|
-
def initialize(url = "wss://gateway
|
|
17
|
+
def initialize(url = "wss://gateway.production.vaas.gdatasecurity.de", timeout = 600)
|
|
18
18
|
@url = url
|
|
19
19
|
@timeout = timeout
|
|
20
20
|
@requests = {}
|
data/lib/vaas/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vaas
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Allie Weitenkamp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: async
|