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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ff338c196864dc973331301d6fbdbbc50de7ab3940ae012458f73bdfe5b0183
4
- data.tar.gz: b9b535f0575a9972380c9fca35faa82305298b23c64b524182c2ed01df92bc51
3
+ metadata.gz: 23d798daeaaa5a7e675237888e80a00d2b5cc3c450c99f336b2b47b8cfe58ff2
4
+ data.tar.gz: dab2d35f2937deb1a31d2ed9f01952753f42e2e08b4767178aaca18eb9103b86
5
5
  SHA512:
6
- metadata.gz: 824699687247af12dc1abf2fd5be2c5bc45e12896606042c531fec5a6d6918a9b4ae06b7c8990b32ce3cbdb1cf77d5e7a6769e34261c633eef3eec8fb413ce22
7
- data.tar.gz: b140ba6bc597e257e286ed3c1d092660041ca5003b5b278dee51d962436ab54a566e01b4d5d331c4c7a5d444024e66691833800b3589a0d6e861297fcdabc4c6
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
- [![Watch the Demo](https://img.youtube.com/vi/Zwg3rROyaH0/maxresdefault.jpg)](https://youtu.be/Zwg3rROyaH0)
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 > 38) lbl = lbl.substring(0, 35) + "...";
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsTraceViewer
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_trace_viewer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aditya-JOSH