capistrano_multiconfig_parallel 2.0.6 → 2.0.8
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 +4 -4
- data/Gemfile +0 -2
- data/README.md +2 -2
- data/capistrano_multiconfig_parallel.gemspec +1 -0
- data/{img → examples/img}/interactive_menu-min.png +0 -0
- data/{img → examples/img}/parallel_demo-min.png +0 -0
- data/examples/multi_cap.yml +27 -0
- data/lib/capistrano_multiconfig_parallel/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 951c2c37ab7dc5e1ebc9356c94eeefabd2a46783
|
|
4
|
+
data.tar.gz: 821cafc97c35075c5488980d8e6d0a44d182e72e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6dc69605ba2600684c094956e624d2e84f34bbf2c4901f36c8ec7f279f811e92f03df4faea20da40b9a8b7eb8f8e18d354c5ef0b106ff7d09aa420b68fe3538b
|
|
7
|
+
data.tar.gz: 00e88e2b05782487fd1e44019762ff2ab80a2a56261d00eb310e371a4549a4df9a6c1355884185c6e9fdb9c632caa304c4ac1a0a4f810c72407085bee04b2334
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@ capistrano_multiconfig_parallel
|
|
|
6
6
|
DEMO
|
|
7
7
|
----
|
|
8
8
|
|
|
9
|
-
[](#features)
|
|
9
|
+
[](#features)
|
|
10
10
|
|
|
11
11
|
Description
|
|
12
12
|
-----------
|
|
@@ -265,7 +265,7 @@ Will ask user if he wants to deploy the apps "foo" and "bar" , since they appear
|
|
|
265
265
|
|
|
266
266
|
Demo:
|
|
267
267
|
|
|
268
|
-
[](#features)
|
|
268
|
+
[](#features)
|
|
269
269
|
|
|
270
270
|
NOTE: IF you want to execute a different command on all stages, you can specify environment variable **ACTION=task_name** either when you specify the STAGES, or can be done individually for each task when prompted about additional ENV options
|
|
271
271
|
|
|
@@ -16,6 +16,7 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
s.test_files = s.files.grep(/^(spec)/)
|
|
17
17
|
s.require_paths = ['lib']
|
|
18
18
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
19
|
+
s.required_ruby_version = '>= 2.0'
|
|
19
20
|
|
|
20
21
|
s.add_runtime_dependency 'celluloid', '>= 0.16', '>= 0.16'
|
|
21
22
|
s.add_runtime_dependency 'celluloid-pmap', '~> 0.2', '>= 0.2.2'
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
task_confirmations:
|
|
2
|
+
- gitflow:calculate_tag
|
|
3
|
+
apply_stage_confirmation:
|
|
4
|
+
- webdev
|
|
5
|
+
multi_debug:
|
|
6
|
+
true
|
|
7
|
+
websocket_server:
|
|
8
|
+
use_redis: false
|
|
9
|
+
enable_debug: false
|
|
10
|
+
terminal:
|
|
11
|
+
clear_screen: false
|
|
12
|
+
application_dependencies:
|
|
13
|
+
- app: 'foo'
|
|
14
|
+
priority: 1
|
|
15
|
+
path: '/some/path/to/foo'
|
|
16
|
+
dependencies: []
|
|
17
|
+
- app: 'bar'
|
|
18
|
+
priority: 1
|
|
19
|
+
path: '/some/path/to/bar'
|
|
20
|
+
dependencies:
|
|
21
|
+
- foo
|
|
22
|
+
- app: 'foo2'
|
|
23
|
+
priority: 1
|
|
24
|
+
path: '/some/path/to/foo2'
|
|
25
|
+
dependencies:
|
|
26
|
+
- foo
|
|
27
|
+
- bar
|
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.
|
|
4
|
+
version: 2.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bogdanRada
|
|
@@ -497,8 +497,9 @@ files:
|
|
|
497
497
|
- V1_README.md
|
|
498
498
|
- bin/multi_cap
|
|
499
499
|
- capistrano_multiconfig_parallel.gemspec
|
|
500
|
-
- img/interactive_menu-min.png
|
|
501
|
-
- img/parallel_demo-min.png
|
|
500
|
+
- examples/img/interactive_menu-min.png
|
|
501
|
+
- examples/img/parallel_demo-min.png
|
|
502
|
+
- examples/multi_cap.yml
|
|
502
503
|
- init.rb
|
|
503
504
|
- lib/capistrano_multiconfig_parallel.rb
|
|
504
505
|
- lib/capistrano_multiconfig_parallel/all.rb
|
|
@@ -544,7 +545,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
544
545
|
requirements:
|
|
545
546
|
- - ">="
|
|
546
547
|
- !ruby/object:Gem::Version
|
|
547
|
-
version: '0'
|
|
548
|
+
version: '2.0'
|
|
548
549
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
549
550
|
requirements:
|
|
550
551
|
- - ">="
|
|
@@ -552,7 +553,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
552
553
|
version: '0'
|
|
553
554
|
requirements: []
|
|
554
555
|
rubyforge_project:
|
|
555
|
-
rubygems_version: 2.
|
|
556
|
+
rubygems_version: 2.4.8
|
|
556
557
|
signing_key:
|
|
557
558
|
specification_version: 4
|
|
558
559
|
summary: CapistranoMulticonfigParallel is a simple ruby implementation that allows
|