async-job-adapter-active_job 0.18.4 → 0.19.0
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
- checksums.yaml.gz.sig +0 -0
- data/lib/active_job/queue_adapters/async_job_adapter.rb +1 -1
- data/lib/async/job/adapter/active_job/service.rb +3 -3
- data/lib/async/job/adapter/active_job/version.rb +2 -2
- data/license.md +1 -1
- data/readme.md +16 -0
- data.tar.gz.sig +0 -0
- metadata +17 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c8a40a83434c1941f79c05f10a410830cae9b4333ec0601f989c99b5dea7864
|
|
4
|
+
data.tar.gz: 9a1df3164ee43b93ab5ee0ca86a6d1ca1f5d5fc2fc5385b91e89d1f44baa7ede
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2798b359ff0467480e7fdffa824291270ff8692945e1716ebbbc7fdf2607bcf0b69aea5d0e90cd469d5952bad9a75f0d38c935ac24b67198156cd7f17ca8bde6
|
|
7
|
+
data.tar.gz: 735b4f1c2e02174a73ac9ce02cde46dafe38b96f7819f655bcf42fc85f9e62335f61f2fe5df5da66be3d418ab8a7248487562abd04ec2b8a56c3e922edce433f
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
# Released under the MIT License.
|
|
4
|
-
# Copyright, 2024-
|
|
4
|
+
# Copyright, 2024-2026, by Samuel Williams.
|
|
5
5
|
|
|
6
6
|
require "async/service/generic"
|
|
7
7
|
require "console/event/failure"
|
|
@@ -52,9 +52,9 @@ module Async
|
|
|
52
52
|
end
|
|
53
53
|
end
|
|
54
54
|
|
|
55
|
-
barrier.wait
|
|
55
|
+
barrier.wait or sleep
|
|
56
56
|
ensure
|
|
57
|
-
barrier
|
|
57
|
+
barrier&.stop
|
|
58
58
|
end
|
|
59
59
|
end
|
|
60
60
|
end
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
# Released under the MIT License.
|
|
4
|
-
# Copyright, 2024-
|
|
4
|
+
# Copyright, 2024-2026, by Samuel Williams.
|
|
5
5
|
|
|
6
6
|
module Async
|
|
7
7
|
module Job
|
|
8
8
|
module Adapter
|
|
9
9
|
module ActiveJob
|
|
10
|
-
VERSION = "0.
|
|
10
|
+
VERSION = "0.19.0"
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
end
|
data/license.md
CHANGED
data/readme.md
CHANGED
|
@@ -70,6 +70,22 @@ We welcome contributions to this project.
|
|
|
70
70
|
4. Push to the branch (`git push origin my-new-feature`).
|
|
71
71
|
5. Create new Pull Request.
|
|
72
72
|
|
|
73
|
+
### Running Tests
|
|
74
|
+
|
|
75
|
+
To run the test suite:
|
|
76
|
+
|
|
77
|
+
``` shell
|
|
78
|
+
bundle exec sus
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### Making Releases
|
|
82
|
+
|
|
83
|
+
To make a new release:
|
|
84
|
+
|
|
85
|
+
``` shell
|
|
86
|
+
bundle exec bake gem:release:patch # or minor or major
|
|
87
|
+
```
|
|
88
|
+
|
|
73
89
|
### Developer Certificate of Origin
|
|
74
90
|
|
|
75
91
|
In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: async-job-adapter-active_job
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.19.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
@@ -42,6 +42,20 @@ cert_chain:
|
|
|
42
42
|
-----END CERTIFICATE-----
|
|
43
43
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
44
44
|
dependencies:
|
|
45
|
+
- !ruby/object:Gem::Dependency
|
|
46
|
+
name: async
|
|
47
|
+
requirement: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- - "~>"
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '2.39'
|
|
52
|
+
type: :runtime
|
|
53
|
+
prerelease: false
|
|
54
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
55
|
+
requirements:
|
|
56
|
+
- - "~>"
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: '2.39'
|
|
45
59
|
- !ruby/object:Gem::Dependency
|
|
46
60
|
name: async-job
|
|
47
61
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -103,14 +117,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
103
117
|
requirements:
|
|
104
118
|
- - ">="
|
|
105
119
|
- !ruby/object:Gem::Version
|
|
106
|
-
version: '3.
|
|
120
|
+
version: '3.3'
|
|
107
121
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
122
|
requirements:
|
|
109
123
|
- - ">="
|
|
110
124
|
- !ruby/object:Gem::Version
|
|
111
125
|
version: '0'
|
|
112
126
|
requirements: []
|
|
113
|
-
rubygems_version:
|
|
127
|
+
rubygems_version: 3.6.9
|
|
114
128
|
specification_version: 4
|
|
115
129
|
summary: A asynchronous job queue for Ruby on Rails.
|
|
116
130
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|