capistrano_multiconfig_parallel 2.0.0.rc5 → 2.0.0.rc6
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5dadffb57193ddb22074553dd8b3919b46afcf94
|
|
4
|
+
data.tar.gz: e62457b33b313e3d257091d495539f78ba423978
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ce6f36f9b11d35049d0d28d4f74e694681c4c3955859d3ac1c086ba3842523106cbe52d95583edc7edf1040d22d83743147d78b391a0db546f6ba8abeb26b1d
|
|
7
|
+
data.tar.gz: 9eea2058c93c23426b20edce3607a443a28cc4c72e71eae7f2bac89aa280f2976823324588d601b88e02fcd5f83367244f5aa09403e43a8ba74d1784d7ce9940
|
|
@@ -225,17 +225,14 @@ module CapistranoMulticonfigParallel
|
|
|
225
225
|
path: job_path(options)
|
|
226
226
|
|
|
227
227
|
))
|
|
228
|
-
if configuration.check_app_bundler_dependencies.to_s.downcase == 'true'
|
|
229
|
-
if job.
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
bundler_worker.work(job) # make sure we have installed the dependencies first for this application
|
|
234
|
-
end
|
|
235
|
-
else
|
|
236
|
-
raise "Please make sure you have a Gemfile in the project root directory #{job.job_path}"
|
|
228
|
+
if configuration.check_app_bundler_dependencies.to_s.downcase == 'true' && job.job_gemfile.present?
|
|
229
|
+
if !@checked_job_paths.include?(job.job_path)
|
|
230
|
+
@checked_job_paths << job.job_path
|
|
231
|
+
bundler_worker = CapistranoMulticonfigParallel::BundlerWorker.new
|
|
232
|
+
bundler_worker.work(job) # make sure we have installed the dependencies first for this application
|
|
237
233
|
end
|
|
238
234
|
end
|
|
235
|
+
raise "Please make sure you have a Gemfile in the project root directory #{job.job_path}" unless job.job_gemfile.present?
|
|
239
236
|
if job.find_capfile.blank?
|
|
240
237
|
raise "Please make sure you have a Capfile in the project root directory #{job.job_path}"
|
|
241
238
|
end
|