capistrano_multiconfig_parallel 0.25.0 → 0.25.1
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: a49f4b8805ad0baa2d6f7d75add7dadb278c14ae
|
4
|
+
data.tar.gz: 7c1724b0f9120639edb78c248f963b9832380356
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df5faf8df6d2de212401fcfc05391355c14718992b87f4b72cb432336ef04a6044626d21e7b7b6b15845df85fddce5f514f451983c89a48481a76a8ffeb5ee4c
|
7
|
+
data.tar.gz: c01b21bcb54dc8a9c80ddca82c8ee11e526887ca4aa9c303955b36975c757f5e099f199d2a84215e17722244eeba3ea551da06cc71e85b28b2253cbd009e96db
|
data/README.md
CHANGED
@@ -23,17 +23,19 @@ Requirements
|
|
23
23
|
1. [Ruby 1.9.x or Ruby 2.x.x](http://www.ruby-lang.org)
|
24
24
|
2. [ActiveSuport >= 4.2.0](https://rubygems.org/gems/activesupport)
|
25
25
|
3. [celluloid-pmap >= 0.2.2](https://github.com/jwo/celluloid-pmap)
|
26
|
-
4. [
|
27
|
-
5. [
|
28
|
-
6. [
|
29
|
-
7. [
|
30
|
-
8. [
|
31
|
-
9. [
|
32
|
-
10. [
|
33
|
-
11. [
|
34
|
-
12. [
|
35
|
-
13. [
|
36
|
-
14. [
|
26
|
+
4. [celluloid_pubsub >= 0.1.0](https://github.com/bogdanRada/celluloid_pubsub)
|
27
|
+
5. [celluloid-websocket-client >= 0.0.1](https://github.com/jeremyd/celluloid-websocket-client)
|
28
|
+
6. [composable_state_machine >= 1.0.2](https://github.com/swoop-inc/composable_state_machine)
|
29
|
+
7. [terminal-table >= 1.5.2](https://github.com/tj/terminal-table)
|
30
|
+
8. [colorize >= 0.7](https://github.com/fazibear/colorize)
|
31
|
+
9. [eventmachine >= 1.0.3](https://github.com/eventmachine/eventmachine)
|
32
|
+
10. [right_popen >= 1.1.3](https://github.com/rightscale/right_popen)
|
33
|
+
11. [capistrano >= 3.0](https://github.com/capistrano/capistrano/)
|
34
|
+
12. [capistrano-multiconfig >= 3.0.8](https://github.com/railsware/capistrano-multiconfig)
|
35
|
+
13. [configliere >= 0.4](https://github.com/infochimps-platform/configliere)
|
36
|
+
14. [inquirer >= 0.2](https://github.com/arlimus/inquirer.rb)
|
37
|
+
15. [devnull >= 0.1](https://github.com/arlimus/inquirer.rb)
|
38
|
+
16. [rack >= 1.6](http://rack.github.io/)
|
37
39
|
|
38
40
|
Compatibility
|
39
41
|
-------------
|
@@ -65,7 +65,7 @@ module CapistranoMulticonfigParallel
|
|
65
65
|
|
66
66
|
def signal_complete
|
67
67
|
if managers_alive? && @manager.all_workers_finished?
|
68
|
-
@job_manager.condition.signal('completed')
|
68
|
+
@job_manager.condition.signal('completed') if @job_manager.alive?
|
69
69
|
elsif !managers_alive?
|
70
70
|
terminate
|
71
71
|
end
|
@@ -12,7 +12,8 @@ Celluloid::WebSocket::Client::Connection.class_eval do
|
|
12
12
|
'HTTP_ORIGIN' => @url,
|
13
13
|
'HTTP_SEC_WEBSOCKET_KEY' => SecureRandom.uuid,
|
14
14
|
'HTTP_SEC_WEBSOCKET_PROTOCAL' => 'ws',
|
15
|
-
'HTTP_SEC_WEBSOCKET_VERSION' =>
|
15
|
+
'HTTP_SEC_WEBSOCKET_VERSION' => '13'
|
16
|
+
)
|
16
17
|
::Rack::MockRequest.env_for(@url, env_hash)
|
17
18
|
end
|
18
19
|
end
|