capistrano_multiconfig_parallel 2.0.6 → 2.0.8

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: 3b7bc22a451c9fb5a7f60a4991effe782b272733
4
- data.tar.gz: 94ea94acfcabdde0b4025372da65a238677041fc
3
+ metadata.gz: 951c2c37ab7dc5e1ebc9356c94eeefabd2a46783
4
+ data.tar.gz: 821cafc97c35075c5488980d8e6d0a44d182e72e
5
5
  SHA512:
6
- metadata.gz: 96f8e436be88fd24afba827c6f7d5633afad4214caa9f38f7b9d57cc4065d701699d77d74606fe1e925dd23e1dd093ef31a911b667eb89aa8d613fd17e180cbb
7
- data.tar.gz: ac3298dcf7fd9691a2a5b85455b631e2ab5818280ae5f0da2c3d03296f72803b7e98cd444126f0c457f267093ba9d71d7ebda17349c1fb3495b5fdcbe83452d1
6
+ metadata.gz: 6dc69605ba2600684c094956e624d2e84f34bbf2c4901f36c8ec7f279f811e92f03df4faea20da40b9a8b7eb8f8e18d354c5ef0b106ff7d09aa420b68fe3538b
7
+ data.tar.gz: 00e88e2b05782487fd1e44019762ff2ab80a2a56261d00eb310e371a4549a4df9a6c1355884185c6e9fdb9c632caa304c4ac1a0a4f810c72407085bee04b2334
data/Gemfile CHANGED
@@ -4,8 +4,6 @@ gemspec
4
4
 
5
5
  if RUBY_VERSION >= "2.2.0"
6
6
  gem 'activesupport', '>= 4.0', '>= 4.0'
7
- gem 'rack' , '>= 1.4', '>= 1.4'
8
7
  else
9
8
  gem 'activesupport', '>= 4.0', '< 5.0'
10
- gem 'rack' , '>= 1.4', '< 2.0'
11
9
  end
data/README.md CHANGED
@@ -6,7 +6,7 @@ capistrano_multiconfig_parallel
6
6
  DEMO
7
7
  ----
8
8
 
9
- [![capistrano multiconfig parallel ](img/parallel_demo-min.png)](#features)
9
+ [![capistrano multiconfig parallel ](examples/img/parallel_demo-min.png)](#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
- [![capistrano multiconfig parallel ](img/interactive_menu-min.png)](#features)
268
+ [![capistrano multiconfig parallel ](examples/img/interactive_menu-min.png)](#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
@@ -9,7 +9,7 @@ module CapistranoMulticonfigParallel
9
9
 
10
10
  MAJOR = 2
11
11
  MINOR = 0
12
- TINY = 6
12
+ TINY = 8
13
13
  PRE = nil
14
14
 
15
15
  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: 2.0.6
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.5.1
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