activejob 6.0.3.7 → 6.0.4
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/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/lib/active_job/core.rb +2 -1
- data/lib/active_job/gem_version.rb +2 -2
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2cedf2b27508b7b83a837b9e5e146733d8b2256f0717f259de468364d85481e2
|
|
4
|
+
data.tar.gz: f2a1a787c22a129fb9d8aaed944b7285ceeee9017a72493d192654956f313e0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ccf031db306fad16049a0b594170db761949f43ee1700a4061f54cd8d0150169f6bff4f8835f50897640af5506b9a15982061f3c21da0f057f808bc0c3add25
|
|
7
|
+
data.tar.gz: deca6325f9fa644adfdd9030c3f2c1343c28844944e89dce5bbf893f4ff552f473605441aa4c41df8a26793247a1f6a5ad88ea66d335dda160173c89a9a31dcb
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -109,7 +109,7 @@ The latest version of Active Job can be installed with RubyGems:
|
|
|
109
109
|
|
|
110
110
|
Source code can be downloaded as part of the Rails project on GitHub:
|
|
111
111
|
|
|
112
|
-
* https://github.com/rails/rails/tree/
|
|
112
|
+
* https://github.com/rails/rails/tree/main/activejob
|
|
113
113
|
|
|
114
114
|
## License
|
|
115
115
|
|
data/lib/active_job/core.rb
CHANGED
|
@@ -85,6 +85,7 @@ module ActiveJob
|
|
|
85
85
|
@priority = self.class.priority
|
|
86
86
|
@executions = 0
|
|
87
87
|
@exception_executions = {}
|
|
88
|
+
@timezone = Time.zone.try(:name)
|
|
88
89
|
end
|
|
89
90
|
ruby2_keywords(:initialize) if respond_to?(:ruby2_keywords, true)
|
|
90
91
|
|
|
@@ -101,7 +102,7 @@ module ActiveJob
|
|
|
101
102
|
"executions" => executions,
|
|
102
103
|
"exception_executions" => exception_executions,
|
|
103
104
|
"locale" => I18n.locale.to_s,
|
|
104
|
-
"timezone" =>
|
|
105
|
+
"timezone" => timezone,
|
|
105
106
|
"enqueued_at" => Time.now.utc.iso8601
|
|
106
107
|
}
|
|
107
108
|
end
|
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: 6.0.
|
|
4
|
+
version: 6.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-06-15 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: 6.0.
|
|
19
|
+
version: 6.0.4
|
|
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: 6.0.
|
|
26
|
+
version: 6.0.4
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: globalid
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -95,11 +95,11 @@ licenses:
|
|
|
95
95
|
- MIT
|
|
96
96
|
metadata:
|
|
97
97
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
98
|
-
changelog_uri: https://github.com/rails/rails/blob/v6.0.
|
|
99
|
-
documentation_uri: https://api.rubyonrails.org/v6.0.
|
|
98
|
+
changelog_uri: https://github.com/rails/rails/blob/v6.0.4/activejob/CHANGELOG.md
|
|
99
|
+
documentation_uri: https://api.rubyonrails.org/v6.0.4/
|
|
100
100
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
101
|
-
source_code_uri: https://github.com/rails/rails/tree/v6.0.
|
|
102
|
-
post_install_message:
|
|
101
|
+
source_code_uri: https://github.com/rails/rails/tree/v6.0.4/activejob
|
|
102
|
+
post_install_message:
|
|
103
103
|
rdoc_options: []
|
|
104
104
|
require_paths:
|
|
105
105
|
- lib
|
|
@@ -115,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
115
115
|
version: '0'
|
|
116
116
|
requirements: []
|
|
117
117
|
rubygems_version: 3.1.2
|
|
118
|
-
signing_key:
|
|
118
|
+
signing_key:
|
|
119
119
|
specification_version: 4
|
|
120
120
|
summary: Job framework with pluggable queues.
|
|
121
121
|
test_files: []
|