capistrano_multiconfig_parallel 0.23.1 → 0.23.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ae7c4b376c7329c94f00f2335f312f73bc4d42d
|
4
|
+
data.tar.gz: 210843574ae404d0a2e6ec626e7fdb303063e9d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17e1c46a802f7dc6811708f9be41928b757e54a0be99e82fe4cc09fd14c2991c48726c84f540477e9016aa9ee7f8c9564cd91aca59a55b20b0c0075f2d7f94df
|
7
|
+
data.tar.gz: 26c7014872dda4f088f9d40e91d0d85d66c75bcb217de791018cc12400beabdd75af3fc09593b1b56504ddf044867309252230742c5a1ad00382f83a59ffb5ec
|
@@ -31,10 +31,9 @@ require 'capistrano/all'
|
|
31
31
|
# fix error with not files that can not be found
|
32
32
|
Gem.find_files('composable_state_machine/**/*.rb').each { |path| require path }
|
33
33
|
|
34
|
-
|
35
|
-
Gem.find_files(
|
36
|
-
|
37
|
-
Gem.find_files('capistrano_multiconfig_parallel/initializers/**/*.rb').each { |path| require path }
|
34
|
+
%w(classes helpers celluloid initializers).each do |folder_name|
|
35
|
+
Gem.find_files("capistrano_multiconfig_parallel/#{folder_name}/**/*.rb").each { |path| require path }
|
36
|
+
end
|
38
37
|
|
39
38
|
require_relative './version'
|
40
39
|
require_relative './base'
|