capistrano_multiconfig_parallel 0.25.0 → 0.25.1

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: 86dd1fb642d571bad63544a92f91cceb3796bed0
4
- data.tar.gz: f2bd78248da4e0016e9d1ef9352d3f6cbf49ce6d
3
+ metadata.gz: a49f4b8805ad0baa2d6f7d75add7dadb278c14ae
4
+ data.tar.gz: 7c1724b0f9120639edb78c248f963b9832380356
5
5
  SHA512:
6
- metadata.gz: 09d42f2a233295486d57f8d901979fabecdd9a5f7135638e457306760db78007fb6a66ded71cbfcb0a1021ef40ac63d0af054171d97675b2bf4e87ce136746f6
7
- data.tar.gz: 51bc9d065e429f550a8fa41195269cde0aa3a7846b5eddbe94beca69f21a3f8932fb3428f17f114129ec4c3311ca4a23cdec338607ca595de69a0abfd8d104d0
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. [composable_state_machine >= 1.0.2](https://github.com/swoop-inc/composable_state_machine)
27
- 5. [terminal-table >= 1.5.2](https://github.com/tj/terminal-table)
28
- 6. [colorize >= 0.7](https://github.com/fazibear/colorize)
29
- 7. [eventmachine >= 1.0.3](https://github.com/eventmachine/eventmachine)
30
- 8. [right_popen >= 1.1.3](https://github.com/rightscale/right_popen)
31
- 9. [capistrano >= 3.0](https://github.com/capistrano/capistrano/)
32
- 10. [capistrano-multiconfig >= 3.0.8](https://github.com/railsware/capistrano-multiconfig)
33
- 11. [configliere >= 0.4](https://github.com/infochimps-platform/configliere)
34
- 12. [inquirer >= 0.2](https://github.com/arlimus/inquirer.rb)
35
- 13. [devnull >= 0.1](https://github.com/arlimus/inquirer.rb)
36
- 14. [versionomy >= 0.4.4](https://github.com/dazuma/versionomy)
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' => SecureRandom.random_number(15))
15
+ 'HTTP_SEC_WEBSOCKET_VERSION' => '13'
16
+ )
16
17
  ::Rack::MockRequest.env_for(@url, env_hash)
17
18
  end
18
19
  end
@@ -8,7 +8,7 @@ module CapistranoMulticonfigParallel
8
8
  module VERSION
9
9
  MAJOR = 0
10
10
  MINOR = 25
11
- TINY = 0
11
+ TINY = 1
12
12
  PRE = nil
13
13
 
14
14
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
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: 0.25.0
4
+ version: 0.25.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada