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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a33dc497c1b82d6d45ebc526e83f27eb51cb683fcf7eb3634d0b94aa020be386
4
- data.tar.gz: 1302300c77ed110f702cb2f6b5817ce71e87ad1cfe35845a1935776a2f6d830c
3
+ metadata.gz: 57bfc74295f4211d562e6f473449630f2206b70a8030e45bffe61a8cc6c6edf8
4
+ data.tar.gz: 4f9f67612547f3e66202b3e9da28956a6b83e8891a36ff599cf633c2f5c62823
5
5
  SHA512:
6
- metadata.gz: d7bbd6b45dc3f1ed501940526360912793e60b7b18eae32c10b32b48f5e90ebb0497cb450e8581fa99e6d14144eabce3c5a03d61069ab37fc3968c5024e573a2
7
- data.tar.gz: e7996ecc883c3a112211c31a174a3281f1a03898bb8af2c994aef9df21648619dac8e442099becc6223398dcae402fd1e69a07c83552b506cb61562c106f5b7a
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
 
@@ -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 suggest a fix.
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Snitch
4
- VERSION = '0.4.0'
4
+ VERSION = '0.4.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snitch-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - RiseKit