soar-authentication-identity_uuid_translator 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/.gemspec +1 -1
- data/README.md +13 -0
- data/docker-compose.ci.uuid_generator.yml +16 -0
- data/lib/soar/authentication/identity_uuid_translator/uuid_generator.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b81da890ea14c8b063a8c221a6a75f78a054839f
|
4
|
+
data.tar.gz: fa1e161aec84c776c352d0cf9b0636530251d59b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a66350e724c4dffb846645d1f913b273a4f71bef24ddfcfde0087ec939f152e2a0729b5b3490be90ed2121515cc2eb7db31c7cd6b5d7b050a9ddc85152a2122
|
7
|
+
data.tar.gz: cc4a45f842d9c5d8f823d74afd3a8bc79660eaeb382010e683cb310cd6342c0d40a27cc403a76a36e6d54d87864a083428e95f5c979713a93d8f660f5391091e
|
data/.gemspec
CHANGED
data/README.md
CHANGED
@@ -20,6 +20,11 @@ $ bundle exec rspec spec/factory_spec.rb
|
|
20
20
|
$ bundle exec rspec spec/role_generator_spec.rb
|
21
21
|
```
|
22
22
|
|
23
|
+
#### Soar::Authentication::IdentityUuidTranslator::UuidGenerator
|
24
|
+
```bash
|
25
|
+
$ bundle exec rspec spec/uuid_generator_spec.rb
|
26
|
+
```
|
27
|
+
|
23
28
|
#### Soar::Authentication::IdentityUuidTranslator::Provider::Customer
|
24
29
|
|
25
30
|
```bash
|
@@ -60,6 +65,14 @@ docker-compose --file docker-compose.ci.role_generator.yml --project-name soar-a
|
|
60
65
|
exit $EXIT_CODE;
|
61
66
|
```
|
62
67
|
|
68
|
+
#### Soar::Authentication::IdentityUuidTranslator::UuidGenerator
|
69
|
+
```bash
|
70
|
+
docker-compose --file docker-compose.ci.uuid_generator.yml --project-name soar-authentication-identity_uuid_translator-uuid_generator up --abort-on-container-exit --remove-orphans --build --force-recreate
|
71
|
+
EXIT_CODE=$(docker ps -a -f "name=soarauthenticationidentityuuidtranslatoruuidgenerator_tests" -q | xargs docker inspect -f "{{ .State.ExitCode }}");
|
72
|
+
docker-compose --file docker-compose.ci.uuid_generator.yml --project-name soar-authentication-identity_uuid_translator-uuid_generator down --rmi local
|
73
|
+
exit $EXIT_CODE;
|
74
|
+
```
|
75
|
+
|
63
76
|
#### Soar::Authentication::IdentityUuidTranslator::Provider::Customer
|
64
77
|
```bash
|
65
78
|
docker-compose --file docker-compose.ci.customer_email.yml --project-name soar-authentication-identity_uuid_translator-provider-customer_email up --abort-on-container-exit --remove-orphans --build --force-recreate
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: soar-authentication-identity_uuid_translator
|
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
|
- Charles Mulder
|
@@ -99,6 +99,7 @@ files:
|
|
99
99
|
- docker-compose.ci.factory.yml
|
100
100
|
- docker-compose.ci.role_generator.yml
|
101
101
|
- docker-compose.ci.staff.yml
|
102
|
+
- docker-compose.ci.uuid_generator.yml
|
102
103
|
- docker-compose.customer.yml
|
103
104
|
- docker-compose.dynamo_db.yml
|
104
105
|
- docker-compose.staff.yml
|