souls 1.7.34 → 1.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25c619a30215d16befde46911bea7ba0427fa8097289ab923d0426ca2273517d
4
- data.tar.gz: 8d2315ddb192e36cc674283a49bcc6df91cb6fcb0e1ff958ece61010d1ac143d
3
+ metadata.gz: 2c2953a327f441eddab54fcf8402cfd57c9fad4423072a3ffd1753ba2dc2530f
4
+ data.tar.gz: 33e5a8ff503212714fa00c25e683e157794e343f9735daaa74f0b179dc8369c9
5
5
  SHA512:
6
- metadata.gz: f0df6dd7f748b84bec722a59aff91af7c1e80556d6417df9e74f08556a40e29f8fd68bece82ce97ad675004b635abf842d466580b3b6098719062a8c7cb8a351
7
- data.tar.gz: 9be13096ecb8fc5ed4dcd6369108fc80cf2144ac753da28ac4e11816ff1dc764c4215affce7a431655d54888dec2e695441932409cb85956948b819f11a8cf25
6
+ metadata.gz: 7cd0a239e63ea9aa5a542f22d9d25d99d71f444653d0e87fd05405f17520a4c198f29aec2178752b41513773b57aba52cab0986fec5097354a60f3b1233c2414
7
+ data.tar.gz: 43be1b1f12e989a1acb31e67a40aca92e821ebfe2a2ef8e9737d4d44836812fd5cc0f49e7db46a5c0ca3b37a40ce64f9635d57e974e4c41282d4a202bc6ed6e4
@@ -34,12 +34,12 @@ module Souls
34
34
  end
35
35
 
36
36
  def cp_env_files
37
- return unless system("cat ./apps/api/.env", out: File::NULL, chdir: Souls.get_mother_path)
37
+ return unless File.exist?("./apps/api/.env")
38
38
 
39
39
  worker_paths = Souls.configuration.workers.map { |n| n[:name].split("-").last }
40
40
  worker_paths.each do |path|
41
- system("rm ./apps/#{path}/.env", chdir: Souls.get_mother_path)
42
- system("cp ./apps/api/.env #{apps}/path/.env", chdir: Souls.get_mother_path)
41
+ system("rm -f ./apps/#{path}/.env", chdir: Souls.get_mother_path)
42
+ system("cp -f ./apps/api/.env ./apps/#{path}/.env", chdir: Souls.get_mother_path)
43
43
  end
44
44
  end
45
45
  end
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "1.7.34".freeze
2
+ VERSION = "1.8.0".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.7.34
1
+ 1.8.0
@@ -1 +1 @@
1
- 1.7.34
1
+ 1.8.0
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: souls
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.34
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI