debug-agent 0.5.0 → 0.5.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 +18 -2
- data/lib/debug_agent/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: 6811d0a31e6c030eb3883ec27085c87cdaa7f9e0217e4e0e7b25cba7d3f2fc6b
|
|
4
|
+
data.tar.gz: a327319653c66f29a8099d468739c45e683b47891ffb7952b705a4ea016dcfc6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a8d3017f048ea920c9051e148b129e74da019693d12dff637ed023eecca16a97d82ef887d2943f6d5f2983968d4d8f5cd259da6513498fdc3653db5b36d42dd
|
|
7
|
+
data.tar.gz: 79429a53f7be512a9f58d69e4d0948a3e29bffe2f27ce06733154189ca54441e683337cf1ca57acbc58fefe86bd5236462e24371bc12646659a824832cbe4a63
|
data/README.md
CHANGED
|
@@ -1,11 +1,27 @@
|
|
|
1
1
|
# Ruby Debug Agent
|
|
2
2
|
|
|
3
3
|
[](https://github.com/topcheer/ruby-debug-agent)
|
|
4
|
-

|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
6
8
|
|
|
7
9
|
An AI-powered runtime debugging agent that embeds directly into your Ruby application. Add one gem, configure an LLM key, and chat with your live app at `/agent` to inspect GC, ObjectSpace, threads, routes, Redis, Rails models/routes, Sidekiq queues, Puma stats, fibers/signals, process info, HTTP requests, and more — **54 diagnostic tools across 20 inspectors**.
|
|
8
10
|
|
|
11
|
+
## Version Support
|
|
12
|
+
|
|
13
|
+
| Ruby Version | Status |
|
|
14
|
+
|--------------|--------|
|
|
15
|
+
| 2.6 | Not supported |
|
|
16
|
+
| 2.7 | Minimum supported |
|
|
17
|
+
| 3.0 | Supported (Fiber.list available) |
|
|
18
|
+
| 3.1 | Supported |
|
|
19
|
+
| 3.2 | Supported |
|
|
20
|
+
| 3.3 | Supported |
|
|
21
|
+
| 3.4 | Tested |
|
|
22
|
+
|
|
23
|
+
> Requires Ruby 2.7+ for pattern matching guards. Framework inspectors (Rails, Sidekiq, Puma) are optional and auto-detected via `defined?`.
|
|
24
|
+
|
|
9
25
|
## Quick Start
|
|
10
26
|
|
|
11
27
|
### 1. Install
|
data/lib/debug_agent/version.rb
CHANGED