passive_queue 0.1.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 +7 -0
- data/CHANGELOG.md +88 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +35 -0
- data/LICENSE +21 -0
- data/README.md +1 -0
- data/bin/be +9 -0
- data/html/landing.html +1237 -0
- data/html/logo-dark.svg +166 -0
- data/html/logo.svg +166 -0
- data/lib/active_job/queue_adapters/passive_queue_adapter.rb +16 -0
- data/lib/passive_queue/adapter.rb +42 -0
- data/lib/passive_queue/cli.rb +139 -0
- data/lib/passive_queue/configuration.rb +23 -0
- data/lib/passive_queue/engine.rb +26 -0
- data/lib/passive_queue/railtie.rb +18 -0
- data/lib/passive_queue/version.rb +7 -0
- data/lib/passive_queue/web.rb +623 -0
- data/lib/passive_queue.rb +52 -0
- metadata +63 -0
metadata
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: passive_queue
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Maciej Mensfeld
|
8
|
+
bindir: bin
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies: []
|
12
|
+
description: Rails queue adapter for mindful developers. Accepts all jobs, executes
|
13
|
+
none. Perfect reliability through strategic non-action.
|
14
|
+
email:
|
15
|
+
- void@passivequeue.pro
|
16
|
+
executables:
|
17
|
+
- be
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- CHANGELOG.md
|
22
|
+
- Gemfile
|
23
|
+
- Gemfile.lock
|
24
|
+
- LICENSE
|
25
|
+
- README.md
|
26
|
+
- bin/be
|
27
|
+
- html/landing.html
|
28
|
+
- html/logo-dark.svg
|
29
|
+
- html/logo.svg
|
30
|
+
- lib/active_job/queue_adapters/passive_queue_adapter.rb
|
31
|
+
- lib/passive_queue.rb
|
32
|
+
- lib/passive_queue/adapter.rb
|
33
|
+
- lib/passive_queue/cli.rb
|
34
|
+
- lib/passive_queue/configuration.rb
|
35
|
+
- lib/passive_queue/engine.rb
|
36
|
+
- lib/passive_queue/railtie.rb
|
37
|
+
- lib/passive_queue/version.rb
|
38
|
+
- lib/passive_queue/web.rb
|
39
|
+
homepage: https://passivequeue.pro
|
40
|
+
licenses:
|
41
|
+
- MIT
|
42
|
+
metadata:
|
43
|
+
homepage_uri: https://passivequeue.pro
|
44
|
+
source_code_uri: https://github.com/mensfeld/passive_queue
|
45
|
+
changelog_uri: https://github.com/mensfeld/passive_queue/blob/main/CHANGELOG.md
|
46
|
+
rdoc_options: []
|
47
|
+
require_paths:
|
48
|
+
- lib
|
49
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 3.1.0
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: '0'
|
59
|
+
requirements: []
|
60
|
+
rubygems_version: 3.6.7
|
61
|
+
specification_version: 4
|
62
|
+
summary: A Rails queue adapter that embraces the zen of non-productivity
|
63
|
+
test_files: []
|