delayed_job 4.1.10 → 4.1.11
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 +4 -0
- data/README.md +1 -1
- data/delayed_job.gemspec +1 -1
- data/lib/delayed/worker.rb +1 -0
- metadata +16 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5abe29ddb94836277901e7d618f7291ff9078ca25619b40405a3ccc5a471950
|
|
4
|
+
data.tar.gz: fb35d6e6eb7618ba31e44e31580c369aa80fe90353bbc282cf933613c82d152c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5427056c3a1adcd9a484a2eeec2d2ce6f3b2ad4c845f31a98d917a3ac228ee0c58a9ca7ced028b03a7935704dceaf6419ee71a4f7077287e7b39429dc517abd1
|
|
7
|
+
data.tar.gz: '082c6fa5d5407d3e87c2393f16c2dfdb233f12a2012bc28d03a1baca749d0d95ca8263d7ed67796561ab1376fe1fa7963af57c87fc06b362d6c1dffc07bc6b98'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
4.1.11 - 2022-09-28
|
|
2
|
+
===================
|
|
3
|
+
* Fix missing require for Rails 7.0.3+
|
|
4
|
+
|
|
1
5
|
4.1.10 - 2022-01-17
|
|
2
6
|
===================
|
|
3
7
|
* Support for Rails 7.0. NOTE: If you are using Delayed Job independent of Rails, Active Support 7 has dropped classic dependency autoloading. You will need to add and setup zeitwerk for autoloading to continue working in ActiveSupport 7.
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
**If you're viewing this at https://github.com/collectiveidea/delayed_job,
|
|
2
2
|
you're reading the documentation for the master branch.
|
|
3
3
|
[View documentation for the latest release
|
|
4
|
-
(4.1.
|
|
4
|
+
(4.1.11).](https://github.com/collectiveidea/delayed_job/tree/v4.1.11)**
|
|
5
5
|
|
|
6
6
|
Delayed::Job
|
|
7
7
|
============
|
data/delayed_job.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.require_paths = ['lib']
|
|
14
14
|
spec.summary = 'Database-backed asynchronous priority queue system -- Extracted from Shopify'
|
|
15
15
|
spec.test_files = Dir.glob('spec/**/*')
|
|
16
|
-
spec.version = '4.1.
|
|
16
|
+
spec.version = '4.1.11'
|
|
17
17
|
spec.metadata = {
|
|
18
18
|
'changelog_uri' => 'https://github.com/collectiveidea/delayed_job/blob/master/CHANGELOG.md',
|
|
19
19
|
'bug_tracker_uri' => 'https://github.com/collectiveidea/delayed_job/issues',
|
data/lib/delayed/worker.rb
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
require 'timeout'
|
|
2
2
|
require 'active_support/dependencies'
|
|
3
|
+
require 'active_support/core_ext/kernel/reporting'
|
|
3
4
|
require 'active_support/core_ext/numeric/time'
|
|
4
5
|
require 'active_support/core_ext/class/attribute_accessors'
|
|
5
6
|
require 'active_support/hash_with_indifferent_access'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: delayed_job
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brandon Keepers
|
|
@@ -12,10 +12,10 @@ authors:
|
|
|
12
12
|
- Matt Griffin
|
|
13
13
|
- Steve Richert
|
|
14
14
|
- Tobias Lütke
|
|
15
|
-
autorequire:
|
|
15
|
+
autorequire:
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
|
-
date: 2022-
|
|
18
|
+
date: 2022-09-28 00:00:00.000000000 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: activesupport
|
|
@@ -106,7 +106,7 @@ metadata:
|
|
|
106
106
|
changelog_uri: https://github.com/collectiveidea/delayed_job/blob/master/CHANGELOG.md
|
|
107
107
|
bug_tracker_uri: https://github.com/collectiveidea/delayed_job/issues
|
|
108
108
|
source_code_uri: https://github.com/collectiveidea/delayed_job
|
|
109
|
-
post_install_message:
|
|
109
|
+
post_install_message:
|
|
110
110
|
rdoc_options: []
|
|
111
111
|
require_paths:
|
|
112
112
|
- lib
|
|
@@ -121,26 +121,26 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
121
121
|
- !ruby/object:Gem::Version
|
|
122
122
|
version: '0'
|
|
123
123
|
requirements: []
|
|
124
|
-
rubygems_version: 3.
|
|
125
|
-
signing_key:
|
|
124
|
+
rubygems_version: 3.3.7
|
|
125
|
+
signing_key:
|
|
126
126
|
specification_version: 4
|
|
127
127
|
summary: Database-backed asynchronous priority queue system -- Extracted from Shopify
|
|
128
128
|
test_files:
|
|
129
|
-
- spec/sample_jobs.rb
|
|
130
|
-
- spec/lifecycle_spec.rb
|
|
131
|
-
- spec/performable_method_spec.rb
|
|
132
|
-
- spec/helper.rb
|
|
133
|
-
- spec/psych_ext_spec.rb
|
|
134
|
-
- spec/worker_spec.rb
|
|
135
|
-
- spec/autoloaded/struct.rb
|
|
136
129
|
- spec/autoloaded/clazz.rb
|
|
137
130
|
- spec/autoloaded/instance_clazz.rb
|
|
138
131
|
- spec/autoloaded/instance_struct.rb
|
|
139
|
-
- spec/
|
|
140
|
-
- spec/
|
|
132
|
+
- spec/autoloaded/struct.rb
|
|
133
|
+
- spec/daemons.rb
|
|
141
134
|
- spec/delayed/backend/test.rb
|
|
142
135
|
- spec/delayed/command_spec.rb
|
|
136
|
+
- spec/delayed/serialization/test.rb
|
|
137
|
+
- spec/helper.rb
|
|
138
|
+
- spec/lifecycle_spec.rb
|
|
143
139
|
- spec/message_sending_spec.rb
|
|
144
140
|
- spec/performable_mailer_spec.rb
|
|
141
|
+
- spec/performable_method_spec.rb
|
|
142
|
+
- spec/psych_ext_spec.rb
|
|
143
|
+
- spec/sample_jobs.rb
|
|
144
|
+
- spec/test_backend_spec.rb
|
|
145
|
+
- spec/worker_spec.rb
|
|
145
146
|
- spec/yaml_ext_spec.rb
|
|
146
|
-
- spec/daemons.rb
|