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: 821ddf342d3b2ec47cda6979404552e953079474
4
- data.tar.gz: 3a2742f8a175f1d99a22694c9b20bdee8c3e0233
3
+ metadata.gz: 5dadffb57193ddb22074553dd8b3919b46afcf94
4
+ data.tar.gz: e62457b33b313e3d257091d495539f78ba423978
5
5
  SHA512:
6
- metadata.gz: 6f4665fbc7662ebd2904f2789e6730dc93515a4107cbcb6c684bf42b54858ae8880337a5e97be9a0954a04a9ecf56214742591ac804078c11676c939a3d8e1b7
7
- data.tar.gz: d35cbf3a283b6dcf1ab1ec0f68d7af6dc0e7137b382215c0718f113efaf431abd741b20b8b2b8b1acf012f2e1dd7067690c05fcbc3437960693a120f3412febc
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.job_gemfile.present?
230
- if !@checked_job_paths.include?(job.job_path)
231
- @checked_job_paths << job.job_path
232
- bundler_worker = CapistranoMulticonfigParallel::BundlerWorker.new
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
@@ -10,7 +10,7 @@ module CapistranoMulticonfigParallel
10
10
  MAJOR = 2
11
11
  MINOR = 0
12
12
  TINY = 0
13
- PRE = 'rc5'
13
+ PRE = 'rc6'
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
16
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano_multiconfig_parallel
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.rc5
4
+ version: 2.0.0.rc6
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada