async-job 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0c2495e88bb7e1dd1636fd03290813e4d9ca0837157d9e6b145cb098e68a616
4
- data.tar.gz: 0e050ec503af7ac00c620bf822358a794dfa12c71d829850df2d668d09d9830e
3
+ metadata.gz: 6aa1dbd39e225aaa055f15ffb7976669c500ce4e6a803262356f47ad026a826b
4
+ data.tar.gz: c594059b63317a346fac7b7780ea99f633ab2f94c9bd20ede9bdd80c2b310f47
5
5
  SHA512:
6
- metadata.gz: 863fe9d09f5afacaf38e912d31cbaab011b019b7b3737f0fa21f196a4fb0b76f4b3da2169178ce1c20576b26cae8e98469707e2c3fbf01826670aa2638794524
7
- data.tar.gz: cfffcc7dc08d90a95109247341a0728e920305a2ebc55b3fe568970a674fe654c7aa7033ff12a6d4c0461ac0baf5057dfc0ee9bfc0816ae9f2e43397cb722195
6
+ metadata.gz: 73f4fe066ea17811d637a00592b34dc51c350287e1ffe7f73e7ae98dd3413800685804ec70b1038eca718ee353d36c41afcaf77752ed237c726aadff60545a2d
7
+ data.tar.gz: b9e0dc1720b5f4bc8eb920a265e41a8a95bcdcf3db2694fdfd358fe9a62d3752b371c680acefebf1bfb12012e50440e216139725888391580180b4dc79de059e
checksums.yaml.gz.sig CHANGED
@@ -1,2 +1,2 @@
1
- ��v���Uh zhj'�d͑q)}h r���J$���}ޓkdžGn��-��s����i��v/�U7}r�[��Q+�p�>�����Z���h費㯃
2
- ��y�ur�������FG&�WvŮ���I�~`Tf3)���qÅ_���M{sHw���SYQ��+�AZ'Ug/���W��)�*s
1
+ #�-��›��n��ާR�SKʈ'O/uo/��7Y�� ���W6�z�æ��M�#���E��
2
+ ��nG�B��皏u��&_ˡ �z4z�����U�^�p�XT��R��q��� ���kE��q�,#0yOcRNP
@@ -29,7 +29,7 @@ module Async
29
29
  end
30
30
 
31
31
  def queue(queue, *arguments, **options)
32
- # The delegate is the output side of the queue, e.g. a Queuedelegate or similar wrapper.
32
+ # The delegate is the output side of the queue, e.g. a Redis server delegate or similar wrapper.
33
33
  # The queue itself is instantiated with the delegate.
34
34
  @queue = ->(delegate){queue.new(delegate, *arguments, **options)}
35
35
  end
@@ -52,7 +52,11 @@ module Async
52
52
  end
53
53
 
54
54
  # We can now construct the queue with the delegate:
55
- producer = consumer = @queue.call(delegate)
55
+ if @queue
56
+ producer = consumer = @queue.call(delegate)
57
+ else
58
+ producer = consumer = delegate
59
+ end
56
60
 
57
61
  # We now construct the queue producer:
58
62
  @enqueue.reverse_each do |middleware|
@@ -5,6 +5,6 @@
5
5
 
6
6
  module Async
7
7
  module Job
8
- VERSION = "0.5.0"
8
+ VERSION = "0.6.0"
9
9
  end
10
10
  end
data/license.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # MIT License
2
2
 
3
3
  Copyright, 2024, by Samuel Williams.
4
+ Copyright, 2024, by Alexey Ivanov.
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
data/readme.md CHANGED
@@ -12,6 +12,10 @@ Please see the [project documentation](https://socketry.github.io/async-job/) fo
12
12
 
13
13
  - [Redis Backend](https://socketry.github.io/async-job/guides/redis-backend/index) - This guide gives a brief overview of the implementation of the Redis backend.
14
14
 
15
+ ## See Also
16
+
17
+ - [async-job-adapter-active\_job](https://github.com/socketry/async-job-adapter-active_job) - ActiveJob adapter for `async-job`.
18
+
15
19
  ## Contributing
16
20
 
17
21
  We welcome contributions to this project.
@@ -24,12 +28,8 @@ We welcome contributions to this project.
24
28
 
25
29
  ### Developer Certificate of Origin
26
30
 
27
- This project uses the [Developer Certificate of Origin](https://developercertificate.org/). All contributors to this project must agree to this document to have their contributions accepted.
31
+ 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.
28
32
 
29
- ### Contributor Covenant
30
-
31
- This project is governed by the [Contributor Covenant](https://www.contributor-covenant.org/). All contributors and participants agree to abide by its terms.
32
-
33
- ## See Also
33
+ ### Community Guidelines
34
34
 
35
- - [async-job-adapter-active_job](https://github.com/socketry/async-job-adapter-active_job) - ActiveJob adapter for `async-job`.
35
+ This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: async-job
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Williams
8
+ - Alexey Ivanov
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain:
@@ -37,7 +38,7 @@ cert_chain:
37
38
  Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
38
39
  voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
39
40
  -----END CERTIFICATE-----
40
- date: 2024-03-06 00:00:00.000000000 Z
41
+ date: 2024-08-02 00:00:00.000000000 Z
41
42
  dependencies:
42
43
  - !ruby/object:Gem::Dependency
43
44
  name: async
@@ -97,6 +98,7 @@ licenses:
97
98
  - MIT
98
99
  metadata:
99
100
  documentation_uri: https://socketry.github.io/async-job/
101
+ source_code_uri: https://github.com/socketry/async-job
100
102
  post_install_message:
101
103
  rdoc_options: []
102
104
  require_paths:
@@ -112,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
114
  - !ruby/object:Gem::Version
113
115
  version: '0'
114
116
  requirements: []
115
- rubygems_version: 3.5.3
117
+ rubygems_version: 3.5.11
116
118
  signing_key:
117
119
  specification_version: 4
118
120
  summary: A asynchronous job queue for Ruby.
metadata.gz.sig CHANGED
Binary file