activejob 5.0.0.beta4 → 5.0.0.racecar1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activejob might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/active_job/gem_version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 493c07bd0d79ec9e676492665b72a1414156c76f
|
4
|
+
data.tar.gz: 180f3c7f4c76d165350d39e2865bca36a70ec31d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5cbe8e93ee20e962fc4897598b664db53be19903ec88e74b87585c03664399b704a2b6184234b1a2251e0e6b767820757e75459e41c845a404c3ff5a7c2d42c7
|
7
|
+
data.tar.gz: f5003492e29690346b7cbc4a41d7ddc7ee60999de569e0f7dccb6e91fa30e074385062fb0a0f72d3cd5ad70c2c016f5aaa714401c8a4bad636a6be3ca841ae17
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## Rails 5.0.0.rc1 (May 06, 2016) ##
|
2
|
+
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
1
6
|
## Rails 5.0.0.beta4 (April 27, 2016) ##
|
2
7
|
|
3
8
|
* Enable class reloading prior to job dispatch, and ensure Active Record
|
@@ -80,6 +85,23 @@
|
|
80
85
|
|
81
86
|
*Jeroen van Baarsen*
|
82
87
|
|
88
|
+
* Add ability to configure the queue adapter on a per job basis.
|
89
|
+
|
90
|
+
Now different jobs can have different queue adapters without conflicting with
|
91
|
+
each other.
|
92
|
+
|
93
|
+
Example:
|
94
|
+
|
95
|
+
class EmailJob < ActiveJob::Base
|
96
|
+
self.queue_adapter = :sidekiq
|
97
|
+
end
|
98
|
+
|
99
|
+
class ImageProcessingJob < ActiveJob::Base
|
100
|
+
self.queue_adapter = :delayed_job
|
101
|
+
end
|
102
|
+
|
103
|
+
*tamird*
|
104
|
+
|
83
105
|
* Add an `:only` option to `perform_enqueued_jobs` to filter jobs based on
|
84
106
|
type.
|
85
107
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activejob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.0.
|
4
|
+
version: 5.0.0.racecar1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 5.0.0.
|
19
|
+
version: 5.0.0.racecar1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 5.0.0.
|
26
|
+
version: 5.0.0.racecar1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: globalid
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
101
|
version: 1.3.1
|
102
102
|
requirements: []
|
103
103
|
rubyforge_project:
|
104
|
-
rubygems_version: 2.
|
104
|
+
rubygems_version: 2.5.1
|
105
105
|
signing_key:
|
106
106
|
specification_version: 4
|
107
107
|
summary: Job framework with pluggable queues.
|