capistrano_multiconfig_parallel 2.3.3 → 2.3.4

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: ce574ca04ab702118afd9cb059ae9123c477f52f
4
- data.tar.gz: 3b3321842e6fb23f4144d06519ddd2dbef183bbe
3
+ metadata.gz: 1f470213648a96e100008e4b26526b4136fa0a85
4
+ data.tar.gz: b0fae41e6b3d78627fe86b21b40a6dcf3fa61925
5
5
  SHA512:
6
- metadata.gz: d6a91df4465f821f0d672d431bc8a5313752ba8fd337025bbf82029b181510291d0332ecb56d0ebfdfe41c2780f375db487d4726cc744ac849b0d5d8f0594190
7
- data.tar.gz: 8c9c8792407c1af6bca0bf6992aec4d4a255a2e8f73a63ac00f9dbc9f7d992e88101a3521caf21be5fd169468df1e16be6864d05990ae0b740adf9b188d50143
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.0.0
7
- - 2.1.5
8
- - 2.2.3
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
@@ -1,9 +1,3 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
3
  gemspec
4
-
5
- if RUBY_VERSION >= "2.2.0"
6
- gem 'activesupport', '>= 4.0', '>= 4.0'
7
- else
8
- gem 'activesupport', '>= 4.0', '< 5.0'
9
- end
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 ( Please check this issue though first for this case: [Rubygems installation of multiple gems doesn't install dependencies](https://github.com/rubygems/rubygems/issues/1672) . I would suggest to use until that issue is resolved the first scenario.
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 >= "2.2.0"
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.1'
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'
@@ -9,7 +9,7 @@ module CapistranoMulticonfigParallel
9
9
 
10
10
  MAJOR = 2
11
11
  MINOR = 3
12
- TINY = 3
12
+ TINY = 4
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.3.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.1
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.1
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.6.6
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