capistrano-sidekiq 0.3.0 → 0.3.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 +4 -4
- data/README.md +2 -0
- data/lib/capistrano/sidekiq/version.rb +1 -1
- data/lib/capistrano/tasks/sidekiq.cap +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3fa9749bb508b12db84f3c96f72d4b8d901c070b
|
|
4
|
+
data.tar.gz: bf34a6068efafbe99f1618937a0cfb919cad321b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9948837c09108d83c48f46849e744e7c4155cc26590723bf97732bb5cccdbe254ec0511add250cfae8bf06730bff685e3e426825c0f202ed183dcac8b6936899
|
|
7
|
+
data.tar.gz: e582c209655f15df106c2a77301dc6ad0b80c2760d716afd0492537958c6e436bc35a89cc62089d3d955cbe1cacd416f82dc416d75342e01c16cb82e314eb7c5
|
data/README.md
CHANGED
|
@@ -44,10 +44,12 @@ Configurable options, shown here with defaults:
|
|
|
44
44
|
:sidekiq_timeout => 10
|
|
45
45
|
:sidekiq_role => :app
|
|
46
46
|
:sidekiq_processes => 1
|
|
47
|
+
:sidekiq_concurrency => nil
|
|
47
48
|
:sidekiq_cmd => "#{fetch(:bundle_cmd, "bundle")} exec sidekiq" # Only for capistrano2.5
|
|
48
49
|
:sidekiqctl_cmd => "#{fetch(:bundle_cmd, "bundle")} exec sidekiqctl" # Only for capistrano2.5
|
|
49
50
|
```
|
|
50
51
|
## Changelog
|
|
52
|
+
- 0.3.1: Fix logs @rottman, add concurrency option support @ungsophy
|
|
51
53
|
- 0.3.0: Fix monit task @andreygerasimchuk
|
|
52
54
|
- 0.2.9: Check if current directory exist @alexdunae
|
|
53
55
|
- 0.2.8: Added :sidekiq_queue & :sidekiq_config
|
|
@@ -86,6 +86,7 @@ namespace :sidekiq do
|
|
|
86
86
|
args.push "--tag #{fetch(:sidekiq_tag)}" if fetch(:sidekiq_tag)
|
|
87
87
|
args.push "--queue #{fetch(:sidekiq_queue)}" if fetch(:sidekiq_queue)
|
|
88
88
|
args.push "--config #{fetch(:sidekiq_config)}" if fetch(:sidekiq_config)
|
|
89
|
+
args.push "--concurrency #{fetch(:sidekiq_concurrency)}" if fetch(:sidekiq_concurrency)
|
|
89
90
|
# use sidekiq_options for special options
|
|
90
91
|
args.push fetch(:sidekiq_options) if fetch(:sidekiq_options)
|
|
91
92
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-sidekiq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Abdelkader Boudih
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-06-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -79,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
79
79
|
version: '0'
|
|
80
80
|
requirements: []
|
|
81
81
|
rubyforge_project:
|
|
82
|
-
rubygems_version: 2.
|
|
82
|
+
rubygems_version: 2.2.2
|
|
83
83
|
signing_key:
|
|
84
84
|
specification_version: 4
|
|
85
85
|
summary: Sidekiq integration for Capistrano
|