passive_queue 1.1.0 → 1.1.1
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/.ruby-version +1 -1
- data/.yard-lint.yml +221 -41
- data/CHANGELOG.md +7 -0
- data/Gemfile +3 -1
- data/Gemfile.lint +6 -0
- data/Gemfile.lint.lock +23 -0
- data/Gemfile.lock +19 -9
- data/Rakefile +10 -0
- data/html/index.html +2 -2
- data/lib/passive_queue/version.rb +1 -1
- data/package-lock.json +331 -0
- data/package.json +9 -0
- data/passive_queue.gemspec +3 -3
- data/renovate.json +19 -5
- metadata +9 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9626aa3a54166dec9163d940f247127a3d58327cd505ce19c290987114b0042c
|
|
4
|
+
data.tar.gz: bdb330ddf8cae62fda5f291154d47b22c9c04d40b658ecf57e21abdb27f972ab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 121494063566f43ca2185eefb38972d28cc94089122b3f81abea0797c000e99f8793b8ad93aa27460d4b9c7080192afab51c0dfdd2c8fe8c07275e521e245cee
|
|
7
|
+
data.tar.gz: 60352ffec9bb812518ee83f37eb9b5d3fa33179df11a7848996f027a469a9d96e8b8ac258738cb041ee815b7c8a400f82c9cfd16b2d34c4ad35cc3373c2f7a0d
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4.0.4
|
data/.yard-lint.yml
CHANGED
|
@@ -1,94 +1,274 @@
|
|
|
1
1
|
# YARD-Lint Configuration
|
|
2
|
-
#
|
|
2
|
+
# See https://github.com/mensfeld/yard-lint for documentation
|
|
3
3
|
|
|
4
|
+
# Global settings for all validators
|
|
4
5
|
AllValidators:
|
|
5
|
-
|
|
6
|
-
FailOnSeverity: error
|
|
7
|
-
|
|
8
|
-
# Require 100% documentation coverage
|
|
6
|
+
FailOnSeverity: convention
|
|
9
7
|
MinCoverage: 100.0
|
|
10
|
-
|
|
11
|
-
# Include private and protected methods in validation
|
|
12
8
|
YardOptions:
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
- "--private"
|
|
10
|
+
- "--protected"
|
|
15
11
|
|
|
16
|
-
# Documentation
|
|
12
|
+
# Documentation validators
|
|
17
13
|
Documentation/UndocumentedObjects:
|
|
14
|
+
Description: All classes, modules, and methods must be documented
|
|
18
15
|
Enabled: true
|
|
19
16
|
Severity: error
|
|
20
|
-
|
|
17
|
+
ExcludedMethods:
|
|
18
|
+
- initialize/0
|
|
19
|
+
- "/^_/"
|
|
21
20
|
|
|
22
21
|
Documentation/UndocumentedMethodArguments:
|
|
22
|
+
Description: All method parameters must have @param documentation
|
|
23
23
|
Enabled: true
|
|
24
24
|
Severity: error
|
|
25
|
-
Description: All method parameters must have @param documentation
|
|
26
25
|
|
|
27
|
-
Documentation/
|
|
26
|
+
Documentation/UndocumentedBooleanMethods:
|
|
27
|
+
Description: Checks that question mark methods document their boolean return.
|
|
28
28
|
Enabled: true
|
|
29
|
-
Severity:
|
|
30
|
-
Description: All methods with return values must have @return documentation
|
|
29
|
+
Severity: warning
|
|
31
30
|
|
|
32
|
-
Documentation/
|
|
31
|
+
Documentation/UndocumentedOptions:
|
|
32
|
+
Description: Detects methods with options hash parameters but no @option tags.
|
|
33
33
|
Enabled: true
|
|
34
|
-
Severity:
|
|
35
|
-
MinLength: 10
|
|
36
|
-
Description: Documentation must be meaningful (minimum 10 characters)
|
|
34
|
+
Severity: warning
|
|
37
35
|
|
|
38
36
|
Documentation/MarkdownSyntax:
|
|
37
|
+
Description: All markdown in documentation must be valid
|
|
39
38
|
Enabled: true
|
|
40
39
|
Severity: error
|
|
41
|
-
Description: All markdown in documentation must be valid
|
|
42
40
|
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
Documentation/EmptyCommentLine:
|
|
42
|
+
Description: Detects empty comment lines at the start or end of documentation blocks.
|
|
45
43
|
Enabled: true
|
|
46
|
-
Severity:
|
|
47
|
-
|
|
44
|
+
Severity: convention
|
|
45
|
+
EnabledPatterns:
|
|
46
|
+
Leading: true
|
|
47
|
+
Trailing: true
|
|
48
|
+
|
|
49
|
+
Documentation/BlankLineBeforeDefinition:
|
|
50
|
+
Description: Detects blank lines between YARD documentation and method definition.
|
|
51
|
+
Enabled: true
|
|
52
|
+
Severity: convention
|
|
53
|
+
OrphanedSeverity: convention
|
|
54
|
+
EnabledPatterns:
|
|
55
|
+
SingleBlankLine: true
|
|
56
|
+
OrphanedDocs: true
|
|
48
57
|
|
|
58
|
+
# Tags validators
|
|
49
59
|
Tags/Order:
|
|
60
|
+
Description: Tags must follow consistent ordering
|
|
50
61
|
Enabled: true
|
|
51
62
|
Severity: error
|
|
52
|
-
|
|
63
|
+
EnforcedOrder:
|
|
64
|
+
- param
|
|
65
|
+
- option
|
|
66
|
+
- yield
|
|
67
|
+
- yieldparam
|
|
68
|
+
- yieldreturn
|
|
69
|
+
- return
|
|
70
|
+
- raise
|
|
71
|
+
- see
|
|
72
|
+
- example
|
|
73
|
+
- note
|
|
74
|
+
- todo
|
|
53
75
|
|
|
54
|
-
Tags/
|
|
76
|
+
Tags/InvalidTypes:
|
|
77
|
+
Description: Type specifications must use valid YARD syntax
|
|
55
78
|
Enabled: true
|
|
56
79
|
Severity: error
|
|
80
|
+
ValidatedTags:
|
|
81
|
+
- param
|
|
82
|
+
- option
|
|
83
|
+
- return
|
|
84
|
+
|
|
85
|
+
Tags/TypeSyntax:
|
|
86
|
+
Description: Validates YARD type syntax using YARD parser.
|
|
87
|
+
Enabled: true
|
|
88
|
+
Severity: warning
|
|
89
|
+
ValidatedTags:
|
|
90
|
+
- param
|
|
91
|
+
- option
|
|
92
|
+
- return
|
|
93
|
+
- yieldreturn
|
|
94
|
+
|
|
95
|
+
Tags/MeaninglessTag:
|
|
96
|
+
Description: Detects @param/@option tags on classes, modules, or constants.
|
|
97
|
+
Enabled: true
|
|
98
|
+
Severity: warning
|
|
99
|
+
CheckedTags:
|
|
100
|
+
- param
|
|
101
|
+
- option
|
|
102
|
+
InvalidObjectTypes:
|
|
103
|
+
- class
|
|
104
|
+
- module
|
|
105
|
+
- constant
|
|
106
|
+
|
|
107
|
+
Tags/CollectionType:
|
|
57
108
|
Description: Collections must use YARD standard syntax (e.g., Hash{K => V}, Array<Type>)
|
|
109
|
+
Enabled: true
|
|
110
|
+
Severity: error
|
|
111
|
+
EnforcedStyle: long
|
|
112
|
+
ValidatedTags:
|
|
113
|
+
- param
|
|
114
|
+
- option
|
|
115
|
+
- return
|
|
116
|
+
- yieldreturn
|
|
117
|
+
|
|
118
|
+
Tags/TagTypePosition:
|
|
119
|
+
Description: Validates type annotation position in tags.
|
|
120
|
+
Enabled: true
|
|
121
|
+
Severity: convention
|
|
122
|
+
CheckedTags:
|
|
123
|
+
- param
|
|
124
|
+
- option
|
|
125
|
+
EnforcedStyle: type_after_name
|
|
126
|
+
|
|
127
|
+
Tags/ApiTags:
|
|
128
|
+
Description: Enforces @api tags on public objects.
|
|
129
|
+
Enabled: false
|
|
130
|
+
Severity: warning
|
|
131
|
+
AllowedApis:
|
|
132
|
+
- public
|
|
133
|
+
- private
|
|
134
|
+
- internal
|
|
135
|
+
|
|
136
|
+
Tags/OptionTags:
|
|
137
|
+
Description: Requires @option tags for methods with options parameters.
|
|
138
|
+
Enabled: true
|
|
139
|
+
Severity: warning
|
|
58
140
|
|
|
59
141
|
Tags/ExampleSyntax:
|
|
142
|
+
Description: Code in @example tags must be valid Ruby syntax
|
|
60
143
|
Enabled: true
|
|
61
144
|
Severity: error
|
|
62
|
-
Description: Code in @example tags must be valid Ruby syntax
|
|
63
145
|
|
|
64
|
-
Tags/
|
|
146
|
+
Tags/RedundantParamDescription:
|
|
147
|
+
Description: Detects meaningless parameter descriptions that add no value.
|
|
148
|
+
Enabled: true
|
|
149
|
+
Severity: convention
|
|
150
|
+
CheckedTags:
|
|
151
|
+
- param
|
|
152
|
+
- option
|
|
153
|
+
Articles:
|
|
154
|
+
- The
|
|
155
|
+
- the
|
|
156
|
+
- A
|
|
157
|
+
- a
|
|
158
|
+
- An
|
|
159
|
+
- an
|
|
160
|
+
MaxRedundantWords: 6
|
|
161
|
+
GenericTerms:
|
|
162
|
+
- object
|
|
163
|
+
- instance
|
|
164
|
+
- value
|
|
165
|
+
- data
|
|
166
|
+
- item
|
|
167
|
+
- element
|
|
168
|
+
EnabledPatterns:
|
|
169
|
+
ArticleParam: true
|
|
170
|
+
PossessiveParam: true
|
|
171
|
+
TypeRestatement: true
|
|
172
|
+
ParamToVerb: true
|
|
173
|
+
IdPattern: true
|
|
174
|
+
DirectionalDate: true
|
|
175
|
+
TypeGeneric: true
|
|
176
|
+
|
|
177
|
+
Tags/InformalNotation:
|
|
178
|
+
Description: Detects informal tag notation patterns like "Note:" instead of @note.
|
|
179
|
+
Enabled: true
|
|
180
|
+
Severity: warning
|
|
181
|
+
CaseSensitive: false
|
|
182
|
+
RequireStartOfLine: true
|
|
183
|
+
Patterns:
|
|
184
|
+
Note: "@note"
|
|
185
|
+
Todo: "@todo"
|
|
186
|
+
TODO: "@todo"
|
|
187
|
+
FIXME: "@todo"
|
|
188
|
+
See: "@see"
|
|
189
|
+
See also: "@see"
|
|
190
|
+
Warning: "@deprecated"
|
|
191
|
+
Deprecated: "@deprecated"
|
|
192
|
+
Author: "@author"
|
|
193
|
+
Version: "@version"
|
|
194
|
+
Since: "@since"
|
|
195
|
+
Returns: "@return"
|
|
196
|
+
Raises: "@raise"
|
|
197
|
+
Example: "@example"
|
|
198
|
+
|
|
199
|
+
Tags/NonAsciiType:
|
|
200
|
+
Description: Detects non-ASCII characters in type annotations.
|
|
201
|
+
Enabled: true
|
|
202
|
+
Severity: warning
|
|
203
|
+
ValidatedTags:
|
|
204
|
+
- param
|
|
205
|
+
- option
|
|
206
|
+
- return
|
|
207
|
+
- yieldreturn
|
|
208
|
+
- yieldparam
|
|
209
|
+
|
|
210
|
+
Tags/TagGroupSeparator:
|
|
211
|
+
Description: Enforces blank line separators between different YARD tag groups.
|
|
212
|
+
Enabled: false
|
|
213
|
+
Severity: convention
|
|
214
|
+
TagGroups:
|
|
215
|
+
param:
|
|
216
|
+
- param
|
|
217
|
+
- option
|
|
218
|
+
return:
|
|
219
|
+
- return
|
|
220
|
+
error:
|
|
221
|
+
- raise
|
|
222
|
+
- throws
|
|
223
|
+
example:
|
|
224
|
+
- example
|
|
225
|
+
meta:
|
|
226
|
+
- see
|
|
227
|
+
- note
|
|
228
|
+
- todo
|
|
229
|
+
- deprecated
|
|
230
|
+
- since
|
|
231
|
+
- version
|
|
232
|
+
- api
|
|
233
|
+
yield:
|
|
234
|
+
- yield
|
|
235
|
+
- yieldparam
|
|
236
|
+
- yieldreturn
|
|
237
|
+
RequireAfterDescription: false
|
|
238
|
+
|
|
239
|
+
# Warnings validators - catches YARD parser errors
|
|
240
|
+
Warnings/UnknownTag:
|
|
241
|
+
Description: Detects unknown YARD tags.
|
|
65
242
|
Enabled: true
|
|
66
243
|
Severity: error
|
|
67
|
-
Description: Tags requiring types must have type information
|
|
68
244
|
|
|
69
|
-
|
|
245
|
+
Warnings/UnknownDirective:
|
|
246
|
+
Description: Detects unknown YARD directives.
|
|
70
247
|
Enabled: true
|
|
71
248
|
Severity: error
|
|
72
|
-
Description: No duplicate tags allowed (except @param, @option, @raise)
|
|
73
249
|
|
|
74
|
-
|
|
75
|
-
|
|
250
|
+
Warnings/InvalidTagFormat:
|
|
251
|
+
Description: Detects malformed tag syntax.
|
|
76
252
|
Enabled: true
|
|
77
253
|
Severity: error
|
|
78
|
-
Description: Descriptions cannot be empty or whitespace-only
|
|
79
254
|
|
|
80
|
-
|
|
255
|
+
Warnings/InvalidDirectiveFormat:
|
|
256
|
+
Description: Detects malformed directive syntax.
|
|
81
257
|
Enabled: true
|
|
82
258
|
Severity: error
|
|
83
|
-
Description: Documentation must have consistent indentation
|
|
84
259
|
|
|
85
|
-
|
|
260
|
+
Warnings/DuplicatedParameterName:
|
|
261
|
+
Description: Detects duplicate @param tags.
|
|
86
262
|
Enabled: true
|
|
87
263
|
Severity: error
|
|
88
|
-
Description: No trailing whitespace in documentation
|
|
89
264
|
|
|
90
|
-
|
|
91
|
-
|
|
265
|
+
Warnings/UnknownParameterName:
|
|
266
|
+
Description: Detects @param tags for non-existent parameters.
|
|
92
267
|
Enabled: true
|
|
93
268
|
Severity: error
|
|
94
|
-
|
|
269
|
+
|
|
270
|
+
# Semantic validators
|
|
271
|
+
Semantic/AbstractMethods:
|
|
272
|
+
Description: Ensures @abstract methods do not have real implementations.
|
|
273
|
+
Enabled: true
|
|
274
|
+
Severity: warning
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. Since this is Passive Queue, "changes" might be a strong word.
|
|
4
4
|
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
## [1.1.1] - 2026-05-18
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Replaced expired `passivequeue.pro` and `passivequeue.io` domain references with the GitHub repository URL and maintainer email
|
|
11
|
+
|
|
5
12
|
## [1.1.0] - 2025-11-13
|
|
6
13
|
|
|
7
14
|
### Changed
|
data/Gemfile
CHANGED
data/Gemfile.lint
ADDED
data/Gemfile.lint.lock
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: https://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
yard (0.9.38)
|
|
5
|
+
yard-lint (1.4.0)
|
|
6
|
+
yard (~> 0.9)
|
|
7
|
+
zeitwerk (~> 2.6)
|
|
8
|
+
zeitwerk (2.7.4)
|
|
9
|
+
|
|
10
|
+
PLATFORMS
|
|
11
|
+
ruby
|
|
12
|
+
x86_64-linux
|
|
13
|
+
|
|
14
|
+
DEPENDENCIES
|
|
15
|
+
yard-lint
|
|
16
|
+
|
|
17
|
+
CHECKSUMS
|
|
18
|
+
yard (0.9.38) sha256=721fb82afb10532aa49860655f6cc2eaa7130889df291b052e1e6b268283010f
|
|
19
|
+
yard-lint (1.4.0) sha256=7dd88fbb08fd77cb840bea899d58812817b36d92291b5693dd0eeb3af9f91f0f
|
|
20
|
+
zeitwerk (2.7.4) sha256=2bef90f356bdafe9a6c2bd32bcd804f83a4f9b8bc27f3600fff051eb3edcec8b
|
|
21
|
+
|
|
22
|
+
BUNDLED WITH
|
|
23
|
+
4.0.3
|
data/Gemfile.lock
CHANGED
|
@@ -1,26 +1,36 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
passive_queue (1.1.
|
|
4
|
+
passive_queue (1.1.1)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
docile (1.4.1)
|
|
10
|
+
drb (2.2.3)
|
|
11
|
+
minitest (6.0.6)
|
|
12
|
+
drb (~> 2.0)
|
|
13
|
+
prism (~> 1.5)
|
|
14
|
+
prism (1.9.0)
|
|
15
|
+
rack (3.2.6)
|
|
16
|
+
rake (13.4.2)
|
|
17
|
+
simplecov (0.22.0)
|
|
18
|
+
docile (~> 1.1)
|
|
19
|
+
simplecov-html (~> 0.11)
|
|
20
|
+
simplecov_json_formatter (~> 0.1)
|
|
21
|
+
simplecov-html (0.13.2)
|
|
22
|
+
simplecov_json_formatter (0.1.4)
|
|
15
23
|
|
|
16
24
|
PLATFORMS
|
|
17
25
|
ruby
|
|
18
26
|
x86_64-linux
|
|
19
27
|
|
|
20
28
|
DEPENDENCIES
|
|
29
|
+
minitest
|
|
21
30
|
passive_queue!
|
|
31
|
+
rack
|
|
22
32
|
rake
|
|
23
|
-
|
|
33
|
+
simplecov
|
|
24
34
|
|
|
25
35
|
BUNDLED WITH
|
|
26
|
-
|
|
36
|
+
4.0.3
|
data/Rakefile
CHANGED
|
@@ -2,3 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
require 'bundler/setup'
|
|
4
4
|
require 'bundler/gem_tasks'
|
|
5
|
+
require 'minitest/test_task'
|
|
6
|
+
|
|
7
|
+
Minitest::TestTask.create do |t|
|
|
8
|
+
t.libs << 'test' << 'lib'
|
|
9
|
+
t.warning = false
|
|
10
|
+
t.test_prelude = 'require "test_helper"'
|
|
11
|
+
t.test_globs = ['test/**/*_test.rb']
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
task default: :test
|
data/html/index.html
CHANGED
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
</div>
|
|
214
214
|
|
|
215
215
|
|
|
216
|
-
<a class="btn btn-ghost text-xl font-light" href="https://
|
|
216
|
+
<a class="btn btn-ghost text-xl font-light" href="https://github.com/mensfeld/passive_queue">
|
|
217
217
|
<img src="logo.svg" alt="Passive Queue Logo"
|
|
218
218
|
class="w-16 h-16 mx-auto mb-0 block mr-2 logo-light hidden" id="" style="width: 28px; height: 28px;">
|
|
219
219
|
<!-- Dark mode logo -->
|
|
@@ -568,7 +568,7 @@ end
|
|
|
568
568
|
</li>
|
|
569
569
|
</ul>
|
|
570
570
|
<div class="card-actions justify-center mt-6">
|
|
571
|
-
<a href="mailto:
|
|
571
|
+
<a href="mailto:maciej@mensfeld.pl" class="btn btn-outline btn-wide">Contact Sales</a>
|
|
572
572
|
</div>
|
|
573
573
|
</div>
|
|
574
574
|
</div>
|
data/package-lock.json
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "passive_queue",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "passive_queue",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"lostconf": "0.4.0"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"node_modules/@nodelib/fs.scandir": {
|
|
15
|
+
"version": "2.1.5",
|
|
16
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
|
17
|
+
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
|
|
18
|
+
"dev": true,
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@nodelib/fs.stat": "2.0.5",
|
|
22
|
+
"run-parallel": "^1.1.9"
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">= 8"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"node_modules/@nodelib/fs.stat": {
|
|
29
|
+
"version": "2.0.5",
|
|
30
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
|
|
31
|
+
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
|
|
32
|
+
"dev": true,
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">= 8"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"node_modules/@nodelib/fs.walk": {
|
|
39
|
+
"version": "1.2.8",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
|
|
41
|
+
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
|
|
42
|
+
"dev": true,
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@nodelib/fs.scandir": "2.1.5",
|
|
46
|
+
"fastq": "^1.6.0"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">= 8"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"node_modules/braces": {
|
|
53
|
+
"version": "3.0.3",
|
|
54
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
55
|
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
56
|
+
"dev": true,
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"fill-range": "^7.1.1"
|
|
60
|
+
},
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=8"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"node_modules/chalk": {
|
|
66
|
+
"version": "5.6.2",
|
|
67
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
|
|
68
|
+
"integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
|
|
69
|
+
"dev": true,
|
|
70
|
+
"license": "MIT",
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
73
|
+
},
|
|
74
|
+
"funding": {
|
|
75
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"node_modules/commander": {
|
|
79
|
+
"version": "12.1.0",
|
|
80
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
|
|
81
|
+
"integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
|
|
82
|
+
"dev": true,
|
|
83
|
+
"license": "MIT",
|
|
84
|
+
"engines": {
|
|
85
|
+
"node": ">=18"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"node_modules/fast-glob": {
|
|
89
|
+
"version": "3.3.3",
|
|
90
|
+
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
|
|
91
|
+
"integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
|
|
92
|
+
"dev": true,
|
|
93
|
+
"license": "MIT",
|
|
94
|
+
"dependencies": {
|
|
95
|
+
"@nodelib/fs.stat": "^2.0.2",
|
|
96
|
+
"@nodelib/fs.walk": "^1.2.3",
|
|
97
|
+
"glob-parent": "^5.1.2",
|
|
98
|
+
"merge2": "^1.3.0",
|
|
99
|
+
"micromatch": "^4.0.8"
|
|
100
|
+
},
|
|
101
|
+
"engines": {
|
|
102
|
+
"node": ">=8.6.0"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"node_modules/fastq": {
|
|
106
|
+
"version": "1.20.1",
|
|
107
|
+
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
|
|
108
|
+
"integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
|
|
109
|
+
"dev": true,
|
|
110
|
+
"license": "ISC",
|
|
111
|
+
"dependencies": {
|
|
112
|
+
"reusify": "^1.0.4"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"node_modules/fill-range": {
|
|
116
|
+
"version": "7.1.1",
|
|
117
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
118
|
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
119
|
+
"dev": true,
|
|
120
|
+
"license": "MIT",
|
|
121
|
+
"dependencies": {
|
|
122
|
+
"to-regex-range": "^5.0.1"
|
|
123
|
+
},
|
|
124
|
+
"engines": {
|
|
125
|
+
"node": ">=8"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"node_modules/glob-parent": {
|
|
129
|
+
"version": "5.1.2",
|
|
130
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
131
|
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
132
|
+
"dev": true,
|
|
133
|
+
"license": "ISC",
|
|
134
|
+
"dependencies": {
|
|
135
|
+
"is-glob": "^4.0.1"
|
|
136
|
+
},
|
|
137
|
+
"engines": {
|
|
138
|
+
"node": ">= 6"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"node_modules/is-extglob": {
|
|
142
|
+
"version": "2.1.1",
|
|
143
|
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
144
|
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
145
|
+
"dev": true,
|
|
146
|
+
"license": "MIT",
|
|
147
|
+
"engines": {
|
|
148
|
+
"node": ">=0.10.0"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"node_modules/is-glob": {
|
|
152
|
+
"version": "4.0.3",
|
|
153
|
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
154
|
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
155
|
+
"dev": true,
|
|
156
|
+
"license": "MIT",
|
|
157
|
+
"dependencies": {
|
|
158
|
+
"is-extglob": "^2.1.1"
|
|
159
|
+
},
|
|
160
|
+
"engines": {
|
|
161
|
+
"node": ">=0.10.0"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"node_modules/is-number": {
|
|
165
|
+
"version": "7.0.0",
|
|
166
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
167
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
168
|
+
"dev": true,
|
|
169
|
+
"license": "MIT",
|
|
170
|
+
"engines": {
|
|
171
|
+
"node": ">=0.12.0"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"node_modules/lostconf": {
|
|
175
|
+
"version": "0.4.0",
|
|
176
|
+
"resolved": "https://registry.npmjs.org/lostconf/-/lostconf-0.4.0.tgz",
|
|
177
|
+
"integrity": "sha512-VNbUnirRU7uESqMHslIRHTcuyx/rr4OZK+L7EQXtYUe5PorBgqBYvPu+6xOr0CoUy4n34NNUKO6BBH6TgwwGTA==",
|
|
178
|
+
"dev": true,
|
|
179
|
+
"license": "MIT",
|
|
180
|
+
"dependencies": {
|
|
181
|
+
"chalk": "^5.3.0",
|
|
182
|
+
"commander": "^12.1.0",
|
|
183
|
+
"fast-glob": "^3.3.2",
|
|
184
|
+
"micromatch": "^4.0.8",
|
|
185
|
+
"smol-toml": "^1.3.0",
|
|
186
|
+
"yaml": "^2.5.0"
|
|
187
|
+
},
|
|
188
|
+
"bin": {
|
|
189
|
+
"lostconf": "dist/cli.js"
|
|
190
|
+
},
|
|
191
|
+
"engines": {
|
|
192
|
+
"node": ">=18.0.0"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"node_modules/merge2": {
|
|
196
|
+
"version": "1.4.1",
|
|
197
|
+
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
|
|
198
|
+
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
|
|
199
|
+
"dev": true,
|
|
200
|
+
"license": "MIT",
|
|
201
|
+
"engines": {
|
|
202
|
+
"node": ">= 8"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"node_modules/micromatch": {
|
|
206
|
+
"version": "4.0.8",
|
|
207
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
208
|
+
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
|
209
|
+
"dev": true,
|
|
210
|
+
"license": "MIT",
|
|
211
|
+
"dependencies": {
|
|
212
|
+
"braces": "^3.0.3",
|
|
213
|
+
"picomatch": "^2.3.1"
|
|
214
|
+
},
|
|
215
|
+
"engines": {
|
|
216
|
+
"node": ">=8.6"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
"node_modules/picomatch": {
|
|
220
|
+
"version": "2.3.1",
|
|
221
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
222
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
223
|
+
"dev": true,
|
|
224
|
+
"license": "MIT",
|
|
225
|
+
"engines": {
|
|
226
|
+
"node": ">=8.6"
|
|
227
|
+
},
|
|
228
|
+
"funding": {
|
|
229
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"node_modules/queue-microtask": {
|
|
233
|
+
"version": "1.2.3",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
|
235
|
+
"integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
|
|
236
|
+
"dev": true,
|
|
237
|
+
"funding": [
|
|
238
|
+
{
|
|
239
|
+
"type": "github",
|
|
240
|
+
"url": "https://github.com/sponsors/feross"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"type": "patreon",
|
|
244
|
+
"url": "https://www.patreon.com/feross"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"type": "consulting",
|
|
248
|
+
"url": "https://feross.org/support"
|
|
249
|
+
}
|
|
250
|
+
],
|
|
251
|
+
"license": "MIT"
|
|
252
|
+
},
|
|
253
|
+
"node_modules/reusify": {
|
|
254
|
+
"version": "1.1.0",
|
|
255
|
+
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
|
|
256
|
+
"integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
|
|
257
|
+
"dev": true,
|
|
258
|
+
"license": "MIT",
|
|
259
|
+
"engines": {
|
|
260
|
+
"iojs": ">=1.0.0",
|
|
261
|
+
"node": ">=0.10.0"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"node_modules/run-parallel": {
|
|
265
|
+
"version": "1.2.0",
|
|
266
|
+
"resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
|
|
267
|
+
"integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
|
|
268
|
+
"dev": true,
|
|
269
|
+
"funding": [
|
|
270
|
+
{
|
|
271
|
+
"type": "github",
|
|
272
|
+
"url": "https://github.com/sponsors/feross"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"type": "patreon",
|
|
276
|
+
"url": "https://www.patreon.com/feross"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"type": "consulting",
|
|
280
|
+
"url": "https://feross.org/support"
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"license": "MIT",
|
|
284
|
+
"dependencies": {
|
|
285
|
+
"queue-microtask": "^1.2.2"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"node_modules/smol-toml": {
|
|
289
|
+
"version": "1.6.0",
|
|
290
|
+
"resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.6.0.tgz",
|
|
291
|
+
"integrity": "sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==",
|
|
292
|
+
"dev": true,
|
|
293
|
+
"license": "BSD-3-Clause",
|
|
294
|
+
"engines": {
|
|
295
|
+
"node": ">= 18"
|
|
296
|
+
},
|
|
297
|
+
"funding": {
|
|
298
|
+
"url": "https://github.com/sponsors/cyyynthia"
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"node_modules/to-regex-range": {
|
|
302
|
+
"version": "5.0.1",
|
|
303
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
304
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
305
|
+
"dev": true,
|
|
306
|
+
"license": "MIT",
|
|
307
|
+
"dependencies": {
|
|
308
|
+
"is-number": "^7.0.0"
|
|
309
|
+
},
|
|
310
|
+
"engines": {
|
|
311
|
+
"node": ">=8.0"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"node_modules/yaml": {
|
|
315
|
+
"version": "2.8.2",
|
|
316
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
|
|
317
|
+
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
|
318
|
+
"dev": true,
|
|
319
|
+
"license": "ISC",
|
|
320
|
+
"bin": {
|
|
321
|
+
"yaml": "bin.mjs"
|
|
322
|
+
},
|
|
323
|
+
"engines": {
|
|
324
|
+
"node": ">= 14.6"
|
|
325
|
+
},
|
|
326
|
+
"funding": {
|
|
327
|
+
"url": "https://github.com/sponsors/eemeli"
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
}
|
data/package.json
ADDED
data/passive_queue.gemspec
CHANGED
|
@@ -4,15 +4,15 @@ Gem::Specification.new do |spec|
|
|
|
4
4
|
spec.name = "passive_queue"
|
|
5
5
|
spec.version = PassiveQueue::VERSION
|
|
6
6
|
spec.authors = ["Maciej Mensfeld"]
|
|
7
|
-
spec.email = ["
|
|
7
|
+
spec.email = ["maciej@mensfeld.pl"]
|
|
8
8
|
|
|
9
9
|
spec.summary = "A Rails queue adapter that embraces the zen of non-productivity"
|
|
10
10
|
spec.description = "Rails queue adapter for mindful developers. Accepts all jobs, executes none. Perfect reliability through strategic non-action."
|
|
11
|
-
spec.homepage = "https://
|
|
11
|
+
spec.homepage = "https://github.com/mensfeld/passive_queue"
|
|
12
12
|
spec.license = "MIT"
|
|
13
13
|
spec.required_ruby_version = ">= 3.3.0"
|
|
14
14
|
|
|
15
|
-
spec.metadata["homepage_uri"] =
|
|
15
|
+
spec.metadata["homepage_uri"] = "https://github.com/mensfeld/passive_queue"
|
|
16
16
|
spec.metadata["source_code_uri"] = "https://github.com/mensfeld/passive_queue"
|
|
17
17
|
spec.metadata["changelog_uri"] = "https://github.com/mensfeld/passive_queue/blob/main/CHANGELOG.md"
|
|
18
18
|
|
data/renovate.json
CHANGED
|
@@ -3,20 +3,34 @@
|
|
|
3
3
|
"extends": [
|
|
4
4
|
"config:recommended"
|
|
5
5
|
],
|
|
6
|
+
"minimumReleaseAge": "7 days",
|
|
6
7
|
"github-actions": {
|
|
7
8
|
"enabled": true,
|
|
8
9
|
"pinDigests": true
|
|
9
10
|
},
|
|
10
11
|
"includePaths": [
|
|
12
|
+
".ruby-version",
|
|
11
13
|
"Gemfile",
|
|
12
|
-
"
|
|
14
|
+
"Gemfile.lint",
|
|
15
|
+
"passive_queue.gemspec",
|
|
16
|
+
".github/workflows/**",
|
|
17
|
+
"package.json"
|
|
13
18
|
],
|
|
14
19
|
"packageRules": [
|
|
15
20
|
{
|
|
16
|
-
"
|
|
17
|
-
|
|
21
|
+
"description": "Group ruby/setup-ruby action with ruby version updates",
|
|
22
|
+
"matchPackageNames": [
|
|
23
|
+
"ruby/setup-ruby",
|
|
24
|
+
"ruby"
|
|
18
25
|
],
|
|
19
|
-
"
|
|
26
|
+
"groupName": "ruby setup",
|
|
27
|
+
"internalChecksFilter": "strict"
|
|
20
28
|
}
|
|
21
|
-
]
|
|
29
|
+
],
|
|
30
|
+
"labels": [
|
|
31
|
+
"dependencies"
|
|
32
|
+
],
|
|
33
|
+
"lockFileMaintenance": {
|
|
34
|
+
"enabled": true
|
|
35
|
+
}
|
|
22
36
|
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: passive_queue
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maciej Mensfeld
|
|
@@ -12,7 +12,7 @@ dependencies: []
|
|
|
12
12
|
description: Rails queue adapter for mindful developers. Accepts all jobs, executes
|
|
13
13
|
none. Perfect reliability through strategic non-action.
|
|
14
14
|
email:
|
|
15
|
-
-
|
|
15
|
+
- maciej@mensfeld.pl
|
|
16
16
|
executables:
|
|
17
17
|
- be
|
|
18
18
|
extensions: []
|
|
@@ -22,6 +22,8 @@ files:
|
|
|
22
22
|
- ".yard-lint.yml"
|
|
23
23
|
- CHANGELOG.md
|
|
24
24
|
- Gemfile
|
|
25
|
+
- Gemfile.lint
|
|
26
|
+
- Gemfile.lint.lock
|
|
25
27
|
- Gemfile.lock
|
|
26
28
|
- LICENSE
|
|
27
29
|
- README.md
|
|
@@ -40,13 +42,15 @@ files:
|
|
|
40
42
|
- lib/passive_queue/railtie.rb
|
|
41
43
|
- lib/passive_queue/version.rb
|
|
42
44
|
- lib/passive_queue/web.rb
|
|
45
|
+
- package-lock.json
|
|
46
|
+
- package.json
|
|
43
47
|
- passive_queue.gemspec
|
|
44
48
|
- renovate.json
|
|
45
|
-
homepage: https://
|
|
49
|
+
homepage: https://github.com/mensfeld/passive_queue
|
|
46
50
|
licenses:
|
|
47
51
|
- MIT
|
|
48
52
|
metadata:
|
|
49
|
-
homepage_uri: https://
|
|
53
|
+
homepage_uri: https://github.com/mensfeld/passive_queue
|
|
50
54
|
source_code_uri: https://github.com/mensfeld/passive_queue
|
|
51
55
|
changelog_uri: https://github.com/mensfeld/passive_queue/blob/main/CHANGELOG.md
|
|
52
56
|
rdoc_options: []
|
|
@@ -63,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
63
67
|
- !ruby/object:Gem::Version
|
|
64
68
|
version: '0'
|
|
65
69
|
requirements: []
|
|
66
|
-
rubygems_version:
|
|
70
|
+
rubygems_version: 4.0.10
|
|
67
71
|
specification_version: 4
|
|
68
72
|
summary: A Rails queue adapter that embraces the zen of non-productivity
|
|
69
73
|
test_files: []
|