capistrano_multiconfig_parallel 2.3.3 → 2.3.4
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/.travis.yml +4 -6
- data/Gemfile +0 -6
- data/README.md +4 -5
- data/capistrano_multiconfig_parallel.gemspec +1 -1
- data/lib/capistrano_multiconfig_parallel/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1f470213648a96e100008e4b26526b4136fa0a85
|
|
4
|
+
data.tar.gz: b0fae41e6b3d78627fe86b21b40a6dcf3fa61925
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 168923a914ea2dd662443a3c7d4c6cb265be7668b1f388e990dbdb0208513435ac5af150304bf86c8c03eac329398865de6e4b2dbf1088732aa244be811d406f
|
|
7
|
+
data.tar.gz: b552bc13efb2e7acfe9d7856f574f1d89a97aef32fa2d12092c1842274b5b57f738b42112d2c8fa29426e91ab8726218a158605fde88d6616f85572f8a1c5cae
|
data/.travis.yml
CHANGED
|
@@ -3,13 +3,11 @@ before_install:
|
|
|
3
3
|
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
|
4
4
|
- gem install bundler
|
|
5
5
|
rvm:
|
|
6
|
-
- 2.
|
|
7
|
-
- 2.
|
|
8
|
-
- 2.
|
|
9
|
-
- 2.2.4
|
|
10
|
-
- 2.3.0
|
|
11
|
-
- ruby-head
|
|
6
|
+
- 2.2.2
|
|
7
|
+
- 2.2.5
|
|
8
|
+
- 2.3.1
|
|
12
9
|
env:
|
|
13
10
|
- RAILS_ENV=test RACK_ENV=test
|
|
14
11
|
notifications:
|
|
15
12
|
email: false
|
|
13
|
+
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -108,10 +108,11 @@ You will need to have [MRI >= 2.2](http://www.ruby-lang.org) when you install in
|
|
|
108
108
|
Or if you need to use [MRI > 2.0 and < 2.2](http://www.ruby-lang.org) you can use this command:
|
|
109
109
|
|
|
110
110
|
```ruby
|
|
111
|
+
gem install capistrano_multiconfig_parallel # This will fail due to activesupport dependency, but next command will fix it
|
|
111
112
|
gem install capistrano_multiconfig_parallel:2.1.1 activesupport:4.0.0
|
|
112
113
|
```
|
|
113
114
|
|
|
114
|
-
You can replace the activesupport dependency with any version greater than 4.0
|
|
115
|
+
You can replace the activesupport dependency with any version greater than 4.0 . I would suggest to use Ruby > 2.2.2 though.
|
|
115
116
|
|
|
116
117
|
For [MRI > 2.0 and < 2.2](http://www.ruby-lang.org) you can use though this workaround. Create a Gemfile on your sytem and add this line of code:
|
|
117
118
|
|
|
@@ -119,12 +120,10 @@ For [MRI > 2.0 and < 2.2](http://www.ruby-lang.org) you can use though this work
|
|
|
119
120
|
|
|
120
121
|
gem 'capistrano_multiconfig_parallel'
|
|
121
122
|
|
|
122
|
-
if RUBY_VERSION
|
|
123
|
-
gem 'activesupport', '>= 4.0', '>= 4.0'
|
|
124
|
-
else
|
|
123
|
+
if RUBY_VERSION < "2.2.0"
|
|
125
124
|
gem 'activesupport', '>= 4.0', '< 5.0'
|
|
126
125
|
end
|
|
127
|
-
|
|
126
|
+
|
|
128
127
|
```
|
|
129
128
|
|
|
130
129
|
And use `bundle exec multi_cap` from that directory when running the executable.
|
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
|
|
21
21
|
s.add_runtime_dependency 'celluloid', '>= 0.16', '>= 0.16'
|
|
22
22
|
s.add_runtime_dependency 'celluloid-pmap', '~> 0.2', '>= 0.2.2'
|
|
23
|
-
s.add_runtime_dependency 'celluloid_pubsub', '~> 1.0', '>= 1.0.
|
|
23
|
+
s.add_runtime_dependency 'celluloid_pubsub', '~> 1.0', '>= 1.0.3'
|
|
24
24
|
s.add_runtime_dependency 'composable_state_machine', '~> 1.0', '>= 1.0.2'
|
|
25
25
|
s.add_runtime_dependency 'terminal-table', '~> 1.5', '>= 1.5.2'
|
|
26
26
|
s.add_runtime_dependency 'colorize', '~> 0.7', '>= 0.7'
|
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.3.
|
|
4
|
+
version: 2.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bogdanRada
|
|
@@ -53,7 +53,7 @@ dependencies:
|
|
|
53
53
|
version: '1.0'
|
|
54
54
|
- - ">="
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
|
-
version: 1.0.
|
|
56
|
+
version: 1.0.3
|
|
57
57
|
type: :runtime
|
|
58
58
|
prerelease: false
|
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -63,7 +63,7 @@ dependencies:
|
|
|
63
63
|
version: '1.0'
|
|
64
64
|
- - ">="
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: 1.0.
|
|
66
|
+
version: 1.0.3
|
|
67
67
|
- !ruby/object:Gem::Dependency
|
|
68
68
|
name: composable_state_machine
|
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -553,7 +553,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
553
553
|
version: '0'
|
|
554
554
|
requirements: []
|
|
555
555
|
rubyforge_project:
|
|
556
|
-
rubygems_version: 2.
|
|
556
|
+
rubygems_version: 2.5.1
|
|
557
557
|
signing_key:
|
|
558
558
|
specification_version: 4
|
|
559
559
|
summary: CapistranoMulticonfigParallel is a simple ruby implementation that allows
|