raises 0.3.0 → 0.3.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/CHANGELOG.md +4 -0
- data/README.md +6 -0
- data/lib/raises/version.rb +1 -1
- metadata +10 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6c55f829b779717ffd7acb8d34538c564f8edfb45a6506fb2f0abdcb39512c49
|
|
4
|
+
data.tar.gz: 604aef8f776d97fd86762853ad00bb4a2bf2956e98e98658f01eec2d621d5d03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '099150a8235d58214fe734b84f2a78d8f2acef2a0f4ca62d0db99c21efb936a2aa609a5d348258d484b8ffca4783adbae275edcb12d800057cd92d7a1764d394'
|
|
7
|
+
data.tar.gz: f2baf3137d3c43bf69f8561a0ad2cc32702236ac9db4e02cf3d48531cf2132e2d370c17b9857abef39f03f77cc34ad3c49797ffe85c39bd7d6e1c23c64569351
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -26,3 +26,9 @@ Optional settings are `RAISES_URL`, `RAISES_ENV`, `RAISES_REVISION`, `RAISES_OPE
|
|
|
26
26
|
Set `RAISES_SPOOL_DIR` to add restart-safe, disk-backed delivery retries. The directory must be on persistent storage if payloads should survive a deploy. Raises stores event or exception JSON there with private permissions, never stores the ingestion token, retries network errors, HTTP 408/429, and 5xx responses, and bounds the spool at 1,000 payloads or 100 MB. Leave it unset to preserve synchronous best-effort delivery.
|
|
27
27
|
|
|
28
28
|
The reporter fails open: network or serialization failures never replace the application exception. Rails filtered parameters are included; headers, raw bodies, query strings, and the request object are not.
|
|
29
|
+
|
|
30
|
+
Agent and ingestion interfaces are documented in the [Raises server API](https://github.com/raisestracker/raises/blob/master/docs/api.md). Agent-readable setup is published at [raises.dev/llms.txt](https://raises.dev/llms.txt) and [raises.dev/skill.md](https://raises.dev/skill.md); the Honeybadger, Rollbar, and Sentry migration runbook is at [raises.dev/migration.md](https://raises.dev/migration.md).
|
|
31
|
+
|
|
32
|
+
## Licensing
|
|
33
|
+
|
|
34
|
+
This gem is MIT-licensed; see [LICENSE.txt](LICENSE.txt). The Raises server and embedded web UI are separately AGPL-3.0-only.
|
data/lib/raises/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: raises
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Clayton Lengel-Zigich
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-08-19 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: railties
|
|
@@ -24,6 +25,7 @@ dependencies:
|
|
|
24
25
|
- !ruby/object:Gem::Version
|
|
25
26
|
version: '7.1'
|
|
26
27
|
description: A Rails.error subscriber for the agent-operated Raises exception inbox.
|
|
28
|
+
email:
|
|
27
29
|
executables: []
|
|
28
30
|
extensions: []
|
|
29
31
|
extra_rdoc_files: []
|
|
@@ -43,10 +45,11 @@ licenses:
|
|
|
43
45
|
- MIT
|
|
44
46
|
metadata:
|
|
45
47
|
homepage_uri: https://raises.dev
|
|
46
|
-
source_code_uri: https://github.com/
|
|
47
|
-
changelog_uri: https://github.com/
|
|
48
|
-
bug_tracker_uri: https://github.com/
|
|
48
|
+
source_code_uri: https://github.com/raisestracker/raises-rails
|
|
49
|
+
changelog_uri: https://github.com/raisestracker/raises-rails/blob/master/CHANGELOG.md
|
|
50
|
+
bug_tracker_uri: https://github.com/raisestracker/raises-rails/issues
|
|
49
51
|
rubygems_mfa_required: 'true'
|
|
52
|
+
post_install_message:
|
|
50
53
|
rdoc_options: []
|
|
51
54
|
require_paths:
|
|
52
55
|
- lib
|
|
@@ -61,7 +64,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
61
64
|
- !ruby/object:Gem::Version
|
|
62
65
|
version: '0'
|
|
63
66
|
requirements: []
|
|
64
|
-
rubygems_version:
|
|
67
|
+
rubygems_version: 3.5.22
|
|
68
|
+
signing_key:
|
|
65
69
|
specification_version: 4
|
|
66
70
|
summary: Rails.error subscriber that reports exceptions to a raises inbox
|
|
67
71
|
test_files: []
|