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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -2
  3. data/lib/debug_agent/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f71863664d8e95b34f553c692cfc6de2328151f3496dc5bb92ba309232dc3b52
4
- data.tar.gz: ab521965229d38b7e8a2ae4fd56a466170219865863573bad59fbe8676f14ce6
3
+ metadata.gz: 6811d0a31e6c030eb3883ec27085c87cdaa7f9e0217e4e0e7b25cba7d3f2fc6b
4
+ data.tar.gz: a327319653c66f29a8099d468739c45e683b47891ffb7952b705a4ea016dcfc6
5
5
  SHA512:
6
- metadata.gz: 01edd9b04e2c7054f6f247536eb85af48db98eb6c6367b4d863ea477b49388b347ad1a78d1758548caf965f483f10b432d979f397af8947e482ab3283104e0b6
7
- data.tar.gz: cf20b7101a695433ddc35d6e4654d99555e50c7220fa8e4132e1495e6e9cadc88c1b217db487a5f9973c5a4a358ce2d6368bff3d65fbb9968ed420d2ee46d7a5
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
  [![Gem Version](https://img.shields.io/badge/gem-debug--agent-red)](https://github.com/topcheer/ruby-debug-agent)
4
- ![Tools](https://img.shields.io/badge/tools-54-blue)
5
- ![Inspectors](https://img.shields.io/badge/inspectors-20-green)
4
+ ![Tools](https://img.shields.io/badge/tools-67-blue)
5
+ ![Inspectors](https://img.shields.io/badge/inspectors-25-green)
6
+ ![Ruby](https://img.shields.io/badge/Ruby-2.7%2B-CC342D)
7
+ ![Gem](https://img.shields.io/badge/gem-debug--agent-red)
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
@@ -1,3 +1,3 @@
1
1
  module DebugAgent
2
- VERSION = '0.5.0'.freeze
2
+ VERSION = '0.5.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: debug-agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ggcode