activejob 4.2.0.rc1 → 4.2.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/active_job/gem_version.rb +1 -1
- data/lib/active_job/logging.rb +6 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26c340103dd98dc00d3b104e957a91df1ab5b1a9
|
4
|
+
data.tar.gz: 3d76efcacbb8b7e9ce54c26e408726c590ed127d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64622236c2d63770e49573362674ed90c55a1ea7f4c1b20fa124a671f9a08bd079a43dd485e04585302f640780ccab55a1cc6436d389737ba3ff66fba89c17b9
|
7
|
+
data.tar.gz: f6db7d2136ee6a0ca119321d38b272ee0188211ff187ca3b51fb28eb13b43cdf927979ef3cb8d232f50aeabff5626fdb8468c631801b92ee1c437c012258b7f5
|
data/README.md
CHANGED
@@ -107,7 +107,7 @@ The latest version of Active Job can be installed with RubyGems:
|
|
107
107
|
|
108
108
|
Source code can be downloaded as part of the Rails project on GitHub
|
109
109
|
|
110
|
-
* https://github.com/rails/rails/tree/
|
110
|
+
* https://github.com/rails/rails/tree/4-2-stable/activejob
|
111
111
|
|
112
112
|
## License
|
113
113
|
|
data/lib/active_job/logging.rb
CHANGED
@@ -85,7 +85,12 @@ module ActiveJob
|
|
85
85
|
end
|
86
86
|
|
87
87
|
def args_info(job)
|
88
|
-
job.arguments.any?
|
88
|
+
if job.arguments.any?
|
89
|
+
' with arguments: ' +
|
90
|
+
job.arguments.map { |arg| arg.try(:to_global_id).try(:to_s) || arg.inspect }.join(', ')
|
91
|
+
else
|
92
|
+
''
|
93
|
+
end
|
89
94
|
end
|
90
95
|
|
91
96
|
def scheduled_at(event)
|
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: 4.2.0.
|
4
|
+
version: 4.2.0.rc2
|
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: 2014-
|
11
|
+
date: 2014-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,26 +16,26 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 4.2.0.
|
19
|
+
version: 4.2.0.rc2
|
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: 4.2.0.
|
26
|
+
version: 4.2.0.rc2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: globalid
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - '>='
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: 0.3.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 0.3.0
|
41
41
|
description: Declare job classes that can be run by a variety of queueing backends.
|
@@ -87,17 +87,17 @@ require_paths:
|
|
87
87
|
- lib
|
88
88
|
required_ruby_version: !ruby/object:Gem::Requirement
|
89
89
|
requirements:
|
90
|
-
- -
|
90
|
+
- - '>='
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: 1.9.3
|
93
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
|
-
- -
|
95
|
+
- - '>'
|
96
96
|
- !ruby/object:Gem::Version
|
97
97
|
version: 1.3.1
|
98
98
|
requirements: []
|
99
99
|
rubyforge_project:
|
100
|
-
rubygems_version: 2.2.
|
100
|
+
rubygems_version: 2.2.1
|
101
101
|
signing_key:
|
102
102
|
specification_version: 4
|
103
103
|
summary: Job framework with pluggable queues.
|