sidekiq_status 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml CHANGED
@@ -14,4 +14,6 @@ env:
14
14
  - SIDEKIQ_VERSION="~>2.7.5"
15
15
  - SIDEKIQ_VERSION="~>2.8.0"
16
16
  - SIDEKIQ_VERSION="~>2.9.0"
17
- script: bundle exec rake
17
+ - SIDEKIQ_VERSION="~>2.10.0"
18
+ - SIDEKIQ_VERSION="~>2.11.0"
19
+ script: bundle exec rake
data/README.md CHANGED
@@ -39,7 +39,7 @@ Now you can enqueue some jobs for this worker
39
39
  jid = MyWorker.perform_async('val_for_arg1', 'val_for_arg2')
40
40
  ```
41
41
 
42
- If a job is rejected by some Client middleware, #perform_async returns false (as it doesn with ordinary Sidekiq worker).
42
+ If a job is rejected by some Client middleware, #perform_async returns false (as it does with ordinary Sidekiq worker).
43
43
 
44
44
  Now, you can easily track the status of the job execution:
45
45
 
@@ -146,6 +146,10 @@ and clean status containers.
146
146
 
147
147
  ## Changelog
148
148
 
149
+ ### 1.0.4
150
+
151
+ * Sidekiq 2.10 and 2.11 support
152
+
149
153
  ### 1.0.3
150
154
 
151
155
  * Include SidekiqStatus::Web app into Sidekiq::Web app unobtrusively (Peter Fern)
@@ -156,7 +160,7 @@ and clean status containers.
156
160
  * sidekiq 2.7.0 support
157
161
  * sidekiq integration tests
158
162
  * Display progress bar and last message in sidekiq-web tab (leandrocg)
159
-
163
+
160
164
  ### 1.0.1
161
165
 
162
166
  * sidekiq 2.6.x support
@@ -1,5 +1,5 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module SidekiqStatus
3
3
  # SidekiqStatus version
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.4"
5
5
  end
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
15
15
  gem.require_paths = ["lib"]
16
16
  gem.version = SidekiqStatus::VERSION
17
17
 
18
- gem.add_runtime_dependency("sidekiq", ">= 2.4", "<= 2.9")
18
+ gem.add_runtime_dependency("sidekiq", ">= 2.4", "<= 2.12")
19
19
 
20
20
  gem.add_development_dependency("activesupport")
21
21
  gem.add_development_dependency("rspec")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq_status
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-02 00:00:00.000000000 Z
12
+ date: 2013-04-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sidekiq
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '2.4'
22
22
  - - <=
23
23
  - !ruby/object:Gem::Version
24
- version: '2.9'
24
+ version: '2.12'
25
25
  type: :runtime
26
26
  prerelease: false
27
27
  version_requirements: !ruby/object:Gem::Requirement
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '2.4'
33
33
  - - <=
34
34
  - !ruby/object:Gem::Version
35
- version: '2.9'
35
+ version: '2.12'
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: activesupport
38
38
  requirement: !ruby/object:Gem::Requirement