et_full_system 1.0.11.pre.rc1 → 1.0.11.pre.rc2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c17961e003c050d0d42d509c9acdefe37b70aebbb9cd5e7d402a9c03ba8f9ec2
4
- data.tar.gz: db9973d99aba50b91802236dde282744c5b5d1fb871e8bdc83a050d3a2ca426e
3
+ metadata.gz: 7b91cba86d7e38decc5048320eafd0231bed88974e85f9e785a607f997974b55
4
+ data.tar.gz: '09f5b5ac7dfdfe27d720f79719f9102c2bb5327033e0fd9937a53c42b4016c31'
5
5
  SHA512:
6
- metadata.gz: '09c3a4e90219dbee03953cd3f295213fd2220cdc83eb5e931c5bb51520e6ae27d4d01d0b26e81f91804eba9051fc565b300ef4a9c23b842e91bf3f6d0fe6b512'
7
- data.tar.gz: 998eaf34834d3e875b0114e7944ba7f14c612ba0962909b010a416824bb3ed074818969d459e45c3a261615efbd4125ed685c14abaf286c097d49e7fcc9307a0
6
+ metadata.gz: 471fe6e6a41edaf943ae8b77fc22b2c3e51815223ef0f60c646da2a411f5a03f4cca7abf95daaebf2d71ebb5d3b62f6068b9aa06fdfe528a1c68899681049b66
7
+ data.tar.gz: c5f1968e10edaf12952316e12e512a92b78d6186d2e2a192988efcd76a9c606bc4ab597a279e6432a502216ba182842c6515b0953849660fa82e783720dc4b43
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- et_full_system (1.0.11.pre.rc1)
4
+ et_full_system (1.0.11.pre.rc2)
5
5
  aws-sdk-s3 (~> 1.9)
6
6
  azure-storage (~> 0.15.0.preview)
7
7
  dotenv (~> 2.7, >= 2.7.2)
@@ -342,7 +342,7 @@ module EtFullSystem
342
342
 
343
343
  def setup_et1_service
344
344
  puts "------------------------------------------------ SETTING UP ET1 SERVICE ---------------------------------------------------"
345
- cmd = "bash --login -c \"cd #{PROJECT_PATH}/systems/et1 && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et1.env\" bundle install --with=#{options[:rails_env]}\""
345
+ cmd = "bash --login -c \"cd #{PROJECT_PATH}/systems/et1 && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et1.env\" gem install bundler:1.17.3 && bundle install --with=#{options[:rails_env]}\""
346
346
  puts cmd
347
347
  external_command cmd, 'et1 setup'
348
348
 
@@ -357,7 +357,7 @@ module EtFullSystem
357
357
 
358
358
  def setup_et3_service
359
359
  puts "------------------------------------------------ SETTING UP ET3 SERVICE ---------------------------------------------------"
360
- cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/et3 && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et3.env\" bundle install --with=#{options[:rails_env]}\""
360
+ cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/et3 && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et3.env\" gem install bundler:1.17.3 && bundle install --with=#{options[:rails_env]}\""
361
361
  puts cmd
362
362
  external_command cmd, 'et3 setup'
363
363
 
@@ -368,7 +368,7 @@ module EtFullSystem
368
368
 
369
369
  def setup_admin_service
370
370
  puts "------------------------------------------------ SETTING UP ADMIN SERVICE ---------------------------------------------------"
371
- cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/admin && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et_admin.env\" bundle install --with=#{options[:rails_env]}\""
371
+ cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/admin && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et_admin.env\" gem install bundler:1.17.3 && bundle install --with=#{options[:rails_env]}\""
372
372
  puts cmd
373
373
  external_command cmd, 'admin setup'
374
374
 
@@ -380,7 +380,7 @@ module EtFullSystem
380
380
 
381
381
  def setup_api_service
382
382
  puts "------------------------------------------------ SETTING UP API SERVICE ---------------------------------------------------"
383
- cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/api && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et_api.env\" bundle install --with=#{options[:rails_env]}\""
383
+ cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/api && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et_api.env\" gem install bundler:1.17.3 && bundle install --with=#{options[:rails_env]}\""
384
384
  puts cmd
385
385
  external_command cmd, 'api setup'
386
386
 
@@ -392,14 +392,14 @@ module EtFullSystem
392
392
 
393
393
  def setup_atos_service
394
394
  puts "------------------------------------------------ SETTING UP ATOS SERVICE ---------------------------------------------------"
395
- cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/atos && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et_atos.env\" bundle install --with=#{options[:rails_env]}\""
395
+ cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/atos && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et_atos.env\" gem install bundler:1.17.3 && bundle install --with=#{options[:rails_env]}\""
396
396
  puts cmd
397
397
  external_command cmd, 'atos setup'
398
398
  end
399
399
 
400
400
  def setup_ccd_service
401
401
  puts "------------------------------------------------ SETTING UP CCD EXPORT SERVICE ---------------------------------------------------"
402
- cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/et_ccd_export && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et_ccd_export.env\" bundle install --with=#{options[:rails_env]}\""
402
+ cmd ="bash --login -c \"cd #{PROJECT_PATH}/systems/et_ccd_export && CLOUD_PROVIDER=#{options[:cloud_provider]} RAILS_ENV=#{options[:rails_env]} godotenv -f \"#{GEM_PATH}/foreman/.env\" godotenv -f \"#{GEM_PATH}/foreman/et_ccd_export.env\" gem install bundler:1.17.3 && bundle install --with=#{options[:rails_env]}\""
403
403
  puts cmd
404
404
  external_command cmd, 'ccd setup'
405
405
  end
@@ -1,3 +1,3 @@
1
1
  module EtFullSystem
2
- VERSION = "1.0.11-rc1"
2
+ VERSION = "1.0.11-rc2"
3
3
  end
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: 1.0.11.pre.rc1
4
+ version: 1.0.11.pre.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gary Taylor