et_full_system 7.0.3 → 7.0.4
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 +8 -12
- data/et_full_system-7.0.3.gem +0 -0
- data/foreman/Procfile +4 -1
- data/lib/et_full_system/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c93e074e1e76469f5b5e4ee20d0337fb665d2ef977245f4ef80ef4ad91e1fe38
|
|
4
|
+
data.tar.gz: 6064234b6a783fd69247dfa2efe502188409e0645094c90aa90c865f1268b559
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d97b248d915cda3a27932eb4bf3c42869e86fbf9021b8741ac55dd8e5a2aca85b51f589c27e97e9923521ae3e05d2e2be5ab71df0ebe13d2ac0d24a2e21e40ce
|
|
7
|
+
data.tar.gz: feecf1eb388d6d3378a60714e7f20c3242d9b64096e00726ab6257fbe7e8311c7f068f608e237467688ae91d221e1bced222f1c301d20ff9a39ee905d684baac
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
et_full_system (7.0.
|
|
4
|
+
et_full_system (7.0.4)
|
|
5
5
|
azure-storage (~> 0.15.0.preview)
|
|
6
6
|
dotenv (~> 2.7, >= 2.7.2)
|
|
7
7
|
et_fake_ccd (~> 1.0)
|
|
@@ -32,7 +32,7 @@ GEM
|
|
|
32
32
|
faraday_middleware (~> 0.10)
|
|
33
33
|
nokogiri (~> 1.6, >= 1.6.8)
|
|
34
34
|
concurrent-ruby (1.1.10)
|
|
35
|
-
date (3.
|
|
35
|
+
date (3.0.3)
|
|
36
36
|
dotenv (2.8.1)
|
|
37
37
|
et_fake_ccd (1.1.11)
|
|
38
38
|
activemodel (~> 6.1)
|
|
@@ -70,26 +70,22 @@ GEM
|
|
|
70
70
|
net-pop
|
|
71
71
|
net-smtp
|
|
72
72
|
mini_mime (1.1.2)
|
|
73
|
-
|
|
74
|
-
minitest (5.17.0)
|
|
73
|
+
minitest (5.16.3)
|
|
75
74
|
multi_xml (0.6.0)
|
|
76
75
|
multipart-post (2.2.3)
|
|
77
76
|
net-imap (0.3.4)
|
|
78
77
|
date
|
|
79
78
|
net-protocol
|
|
80
|
-
net-pop (0.1.
|
|
81
|
-
net-protocol
|
|
79
|
+
net-pop (0.1.0)
|
|
82
80
|
net-protocol (0.2.1)
|
|
83
81
|
timeout
|
|
84
|
-
net-smtp (0.
|
|
85
|
-
|
|
86
|
-
nokogiri (1.13.10)
|
|
87
|
-
mini_portile2 (~> 2.8.0)
|
|
82
|
+
net-smtp (0.1.0)
|
|
83
|
+
nokogiri (1.13.10-x86_64-linux)
|
|
88
84
|
racc (~> 1.4)
|
|
89
85
|
pastel (0.8.0)
|
|
90
86
|
tty-color (~> 0.5)
|
|
91
87
|
public_suffix (5.0.1)
|
|
92
|
-
racc (1.6.
|
|
88
|
+
racc (1.6.0)
|
|
93
89
|
rack (3.0.3)
|
|
94
90
|
rake (13.0.1)
|
|
95
91
|
roda (3.63.0)
|
|
@@ -100,7 +96,7 @@ GEM
|
|
|
100
96
|
rotp (6.2.2)
|
|
101
97
|
thor (1.2.1)
|
|
102
98
|
tilt (2.0.11)
|
|
103
|
-
timeout (0.
|
|
99
|
+
timeout (0.1.0)
|
|
104
100
|
tty-color (0.6.0)
|
|
105
101
|
tty-logger (0.6.0)
|
|
106
102
|
pastel (~> 0.8)
|
|
Binary file
|
data/foreman/Procfile
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
traefik: bash --login -c "traefik --providers.rest=true --providers.rest.insecure=true --api.insecure=true --api.insecure=true --entryPoints.http.address=:3100 --entryPoints.traefik.address=:3200"
|
|
2
|
-
|
|
2
|
+
fake_acas_web: bash --login -c "cd ${FS_ROOT_PATH}/support/fake_services && ./bin/et_fake_acas_server -port 9000 -threads=1 -workers=2"
|
|
3
|
+
fake_ccd_web: bash --login -c "cd ${FS_ROOT_PATH}/support/fake_services && ./bin/et_fake_ccd start --port=9100 --create_case_schema=./config/case_create.json"
|
|
4
|
+
fake_notify_web: bash --login -c "cd ${FS_ROOT_PATH}/support/fake_services && source ./environment_variables/fake_notify.env && ./bin/gov_fake_notify start --port=9200 --config=./config/gov_fake_notify_local.yaml"
|
|
5
|
+
|
|
3
6
|
et1_web: export FREEPORT=$(freeport) && godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et1.env bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url et1 http://localhost:$FREEPORT && cd systems/et1 && PORT=$FREEPORT ./run.sh"
|
|
4
7
|
et1_sidekiq: bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && cd systems/et1 && godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et1.env ./run_sidekiq.sh"
|
|
5
8
|
et3_web: export FREEPORT=$(freeport) && godotenv -f ${FOREMAN_PATH}/.env godotenv -f ${FOREMAN_PATH}/et3.env bash --login -c "cd ${FS_ROOT_PATH} && et_full_system local wait_for_support && et_full_system local update_service_url et3 http://localhost:$FREEPORT && cd systems/et3 && PORT=$FREEPORT ./run.sh"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: et_full_system
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.0.
|
|
4
|
+
version: 7.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gary Taylor
|
|
@@ -140,6 +140,7 @@ files:
|
|
|
140
140
|
- docker/build/run
|
|
141
141
|
- docker/docker-compose.yml
|
|
142
142
|
- docker/pdftk
|
|
143
|
+
- et_full_system-7.0.3.gem
|
|
143
144
|
- et_full_system.gemspec
|
|
144
145
|
- exe/et_full_system
|
|
145
146
|
- foreman/.env
|