rails_trace_viewer 0.1.2 → 0.1.3
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 +5 -1
- data/app/views/rails_trace_viewer/traces/show.html.erb +1 -1
- data/lib/rails_trace_viewer/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: 23d798daeaaa5a7e675237888e80a00d2b5cc3c450c99f336b2b47b8cfe58ff2
|
|
4
|
+
data.tar.gz: dab2d35f2937deb1a31d2ed9f01952753f42e2e08b4767178aaca18eb9103b86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8a7bee2b3881554f766d57f1fc567b551f2eb8cd1a44a3d751f4dda7534ecdefbe7afa09a39641f777d949752120cac11c1ef9c3bb88c3dbd799cb06643a347
|
|
7
|
+
data.tar.gz: 596abcd4e77a7a93ed8e324c1246762a26b51f532306ba7413fd1923980989cc3958bcdab57df4b8193b49d45c399f3ef920415d5a9b8b2ec7fdc3e8cc92c186
|
data/README.md
CHANGED
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
An educational and debugging tool for Ruby on Rails to visualize the request lifecycle in real-time.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<div align="center">
|
|
6
|
+
<a href="https://youtu.be/Zwg3rROyaH0">
|
|
7
|
+
<img src="https://markdown-videos-api.jorgenkh.no/url?url=https%3A%2F%2Fyoutu.be%2FZwg3rROyaH0" alt="Watch the Demo" style="width:100%; max-width:800px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);">
|
|
8
|
+
</a>
|
|
9
|
+
</div>
|
|
6
10
|
|
|
7
11
|
Rails Trace Viewer provides a beautiful, interactive Call Stack Tree that visualizes how your Rails application processes requests. It traces the flow from the Controller through Models, Views, SQL Queries, and even across process boundaries into Sidekiq Background Jobs.
|
|
8
12
|
|
|
@@ -259,7 +259,7 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
259
259
|
|
|
260
260
|
Object.values(G.nodes).forEach(n => {
|
|
261
261
|
let lbl = n.name || "Unknown";
|
|
262
|
-
if (lbl.length >
|
|
262
|
+
if (lbl.length > 29) lbl = lbl.substring(0, 27) + "...";
|
|
263
263
|
dag.setNode(n.id, { label: lbl, width: NODE_WIDTH, height: NODE_HEIGHT, type: n.type, fullData: n });
|
|
264
264
|
});
|
|
265
265
|
|