snitch-rails 0.4.0 → 0.4.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/README.md +3 -1
- data/lib/snitch/github_client.rb +2 -2
- data/lib/snitch/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57bfc74295f4211d562e6f473449630f2206b70a8030e45bffe61a8cc6c6edf8
|
|
4
|
+
data.tar.gz: 4f9f67612547f3e66202b3e9da28956a6b83e8891a36ff599cf633c2f5c62823
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5cea442718a6c2b2d4b21c324dd8acd47960bccaa2110d402bff50528037dde83a8b0557895a399221cf4cdd38af1542df21d844cbdfbe11df6c1947bb040cf
|
|
7
|
+
data.tar.gz: aeb1d6779f92e297b968f71e4db0f707a19d36d5d9f278a9a7f383532b8829bcfef7bd1dfd11684e2ac34e50bb7c4226b48f57236be4729455893bb138fcbf67
|
data/README.md
CHANGED
|
@@ -12,6 +12,8 @@ Snitch catches unhandled exceptions in your Rails application, persists them to
|
|
|
12
12
|
- **Dashboard** at `/snitches` with tabbed views: Open, Closed, and Ignored
|
|
13
13
|
- Ignore exceptions via config or directly from the dashboard
|
|
14
14
|
- Manual exception reporting for rescued exceptions
|
|
15
|
+
- GitHub webhook to auto-close events when issues are closed
|
|
16
|
+
- Auto-reopens events (and their GitHub issues) when a closed exception recurs
|
|
15
17
|
|
|
16
18
|
## Installation
|
|
17
19
|
|
|
@@ -174,8 +176,8 @@ Once configured, closing a GitHub issue will automatically close the correspondi
|
|
|
174
176
|
## Roadmap
|
|
175
177
|
|
|
176
178
|
- [x] Dashboard to view and manage captured exceptions
|
|
177
|
-
- [ ] Multi-db support
|
|
178
179
|
- [x] Webhook to resolve snitch records when GitHub issues close
|
|
180
|
+
- [ ] Multi-db support
|
|
179
181
|
|
|
180
182
|
## Requirements
|
|
181
183
|
|
data/lib/snitch/github_client.rb
CHANGED
|
@@ -57,7 +57,7 @@ module Snitch
|
|
|
57
57
|
- **Params:** `#{record.request_params}`
|
|
58
58
|
|
|
59
59
|
---
|
|
60
|
-
#{mention} Please investigate this exception. Analyze the backtrace, identify the root cause, and
|
|
60
|
+
#{mention} Please investigate this exception. Analyze the backtrace, identify the root cause, fix the issue, and open a pull request with your changes.
|
|
61
61
|
MARKDOWN
|
|
62
62
|
end
|
|
63
63
|
|
|
@@ -73,7 +73,7 @@ module Snitch
|
|
|
73
73
|
- **Params:** `#{record.request_params}`
|
|
74
74
|
|
|
75
75
|
---
|
|
76
|
-
#{mention} This exception has occurred again. Please review if the previous analysis still applies.
|
|
76
|
+
#{mention} This exception has occurred again. Please review if the previous analysis still applies, fix the issue, and open a pull request with your changes.
|
|
77
77
|
MARKDOWN
|
|
78
78
|
end
|
|
79
79
|
|
data/lib/snitch/version.rb
CHANGED