solid_queue_plus 0.1.0 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '018a73798584187fa8f9060318b3c3770e40b9cdc113886f25141f54a4cdcc80'
4
- data.tar.gz: d010eb49ae248bff77cbe7b2ce1d48cb2246faf2a4f01a738b64beb127becbf5
3
+ metadata.gz: 733a276a030de365d5cd46cf2d3a2f6a6722a0b32fff70accf3ad56df55e87ba
4
+ data.tar.gz: 65154dbe0aced80315a6267999e4dd206f99bacc4ba62fb64816cb6e008b07a7
5
5
  SHA512:
6
- metadata.gz: b74d4ee789b39c3ed57839c0e61e126571797898b282c0d54221c66d4cb7bcb3a95aff625ea55a2f35fa5a36763696a4ee8cdd769ae253e2982e931f56b9ecda
7
- data.tar.gz: 14fcf89b43981e00e1deaee401dbe8f6068906e9fa670c874dd60aa1121f4eafad2bd3e5c6a74ab89f551ee0a1b7524ecfc68695ec36f09a6e61dd528d9958a4
6
+ metadata.gz: 6139c443ce4f72d40347d91d2ed8484a8cd7cffa0b7c95696b822007035a8e13365e65c28ccea05979a81a03e7adfb894b19d6d647822fd55ba41fb9b21ee5b5
7
+ data.tar.gz: e778720309d61d71a1626eb1ded1df24a0bbb43527bd8306ae1aabd833c105df27d96fa34c0e01debe37d96d903ca332c1c689fc53d108ac535a84585dad2b7f
data/README.md CHANGED
@@ -14,3 +14,74 @@ Add this line to your application's Gemfile:
14
14
 
15
15
  ```ruby
16
16
  gem 'solid_queue_plus', github: 'sukendhar/solid_queue_plus'
17
+ ```
18
+
19
+ Then run:
20
+
21
+ ```bash
22
+ bundle install
23
+ ```
24
+
25
+ ---
26
+
27
+ ## Usage
28
+
29
+ ### 🔁 Automatic Job Retries
30
+
31
+ Add this to an initializer:
32
+
33
+ ```ruby
34
+ SolidQueue.before_perform do |job|
35
+ SolidQueuePlus::RetryMiddleware.new.call(job) do
36
+ job.perform_now
37
+ end
38
+ end
39
+ ```
40
+
41
+ Customize retry logic in `RetryMiddleware`.
42
+
43
+ ---
44
+
45
+ ### 🛑 Failure Notifications
46
+
47
+ Set your Slack webhook URL:
48
+
49
+ ```bash
50
+ export SOLID_QUEUE_SLACK_WEBHOOK=https://hooks.slack.com/services/your/webhook/url
51
+ ```
52
+
53
+ Edit `SolidQueuePlus::Notifier` to integrate with:
54
+ - Slack (`slack-notifier`)
55
+ - Email (via ActionMailer, optional)
56
+
57
+ ---
58
+
59
+ ### 📊 Monitoring Dashboard
60
+
61
+ Mount the dashboard in `config/routes.rb`:
62
+
63
+ ```ruby
64
+ mount SolidQueuePlus::Engine => "/solid_queue_plus"
65
+ ```
66
+
67
+ Then open [http://localhost:3000/solid_queue_plus](http://localhost:3000/solid_queue_plus) to view live job status.
68
+
69
+ ---
70
+
71
+ ## Roadmap
72
+
73
+ - [ ] Add Hotwire interactivity to dashboard
74
+ - [ ] Add filters and retry actions to dashboard UI
75
+ - [ ] Built-in authentication support
76
+
77
+ ---
78
+
79
+ ## Contributing
80
+
81
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/sukendhar/solid_queue_plus](https://github.com/yourusername/solid_queue_plus).
82
+
83
+ ---
84
+
85
+ ## License
86
+
87
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidQueuePlus
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solid_queue_plus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sukhendar
@@ -83,11 +83,11 @@ files:
83
83
  - lib/solid_queue_plus/notifier.rb
84
84
  - lib/solid_queue_plus/retry_middleware.rb
85
85
  - lib/solid_queue_plus/version.rb
86
- homepage: https://github.com/yourusername/solid_queue_plus
86
+ homepage: https://github.com/Sukendhar/solid_queue_plus
87
87
  licenses:
88
88
  - MIT
89
89
  metadata:
90
- homepage_uri: https://github.com/yourusername/solid_queue_plus
90
+ homepage_uri: https://github.com/Sukendhar/solid_queue_plus
91
91
  post_install_message:
92
92
  rdoc_options: []
93
93
  require_paths: