capistrano_multiconfig_parallel 1.1.1 → 1.1.2
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: 65ce1bb81a2bbdb39355285d45dab22a7f9db2a4
|
|
4
|
+
data.tar.gz: e7aaf180dea6f7b7303de2148dd6bd12be256ac6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a0620446c8753d5636f70854e5845e45814cb7d2dcd8c7be92824de476c0908b03bc773d641f31fd1f0a5c824335a2c57114b09256152b38c64c197dc6c7307
|
|
7
|
+
data.tar.gz: f9cece9d472f5b666362150c8ab8729b03f4ddcc37d220fd4990e96fadc95e394f0cfce17fd7bf693e57880889608ea616d8c1a8d14355f7bfd8a771aec5118b
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
2
|
require 'bundler'
|
|
3
3
|
require 'bundler/setup'
|
|
4
|
+
|
|
4
5
|
require 'active_support/core_ext/object/blank'
|
|
5
6
|
require 'active_support/core_ext/hash/keys'
|
|
7
|
+
require 'active_support/core_ext/module/delegation'
|
|
6
8
|
require 'active_support/concern'
|
|
7
9
|
|
|
8
10
|
require 'celluloid/autostart'
|
|
@@ -18,6 +20,7 @@ require 'configliere'
|
|
|
18
20
|
require 'devnull'
|
|
19
21
|
require 'inquirer'
|
|
20
22
|
require 'rack'
|
|
23
|
+
require 'rake'
|
|
21
24
|
|
|
22
25
|
require 'logger'
|
|
23
26
|
require 'fileutils'
|
|
@@ -26,19 +29,16 @@ require 'yaml'
|
|
|
26
29
|
require 'stringio'
|
|
27
30
|
require 'io/console'
|
|
28
31
|
|
|
29
|
-
# capistrano requirements
|
|
30
|
-
require 'rake'
|
|
31
|
-
|
|
32
32
|
# fix error with not files that can not be found
|
|
33
|
-
Gem.find_files('composable_state_machine/**/*.rb').each { |path| require path }
|
|
33
|
+
Gem.find_files('composable_state_machine/**/*.rb').each { |path| require path }
|
|
34
34
|
|
|
35
35
|
%w(helpers classes celluloid core_ext).each do |folder_name|
|
|
36
36
|
Gem.find_files("capistrano_multiconfig_parallel/#{folder_name}/**/*.rb").each { |path| require path }
|
|
37
37
|
end
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
%w(version base application).each do |filename|
|
|
40
|
+
Gem.find_files("capistrano_multiconfig_parallel/#{filename}.rb").each { |path| require path }
|
|
41
|
+
end
|
|
42
42
|
|
|
43
43
|
%w(initializers).each do |folder_name|
|
|
44
44
|
Gem.find_files("capistrano_multiconfig_parallel/#{folder_name}/**/*.rb").each { |path| require path }
|
|
@@ -42,7 +42,7 @@ module CapistranoMulticonfigParallel
|
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
def capistrano_version_2?
|
|
45
|
-
verify_gem_version(capistrano_version, '3.0', operator: '<')
|
|
45
|
+
capistrano_version.blank? ? false : verify_gem_version(capistrano_version, '3.0', operator: '<')
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
private
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano_multiconfig_parallel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bogdanRada
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: celluloid-pmap
|