dispatch-rails 0.7.0
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 +7 -0
- data/README.md +227 -0
- data/app/assets/javascripts/dispatch/error_tracker.js +152 -0
- data/app/assets/javascripts/dispatch/widget.js +293 -0
- data/app/helpers/dispatch/widget_helper.rb +65 -0
- data/app/views/dispatch/_error_tracker.html.erb +9 -0
- data/app/views/dispatch/_widget.html.erb +71 -0
- data/lib/dispatch/rails/configuration.rb +135 -0
- data/lib/dispatch/rails/engine.rb +61 -0
- data/lib/dispatch/rails/error_subscriber.rb +32 -0
- data/lib/dispatch/rails/event_builder.rb +257 -0
- data/lib/dispatch/rails/heartbeat_aggregator.rb +110 -0
- data/lib/dispatch/rails/heartbeat_middleware.rb +60 -0
- data/lib/dispatch/rails/middleware.rb +20 -0
- data/lib/dispatch/rails/rake_handler.rb +19 -0
- data/lib/dispatch/rails/reporter.rb +93 -0
- data/lib/dispatch/rails/response_annotator.rb +107 -0
- data/lib/dispatch/rails/transport.rb +134 -0
- data/lib/dispatch/rails/version.rb +5 -0
- data/lib/dispatch-rails.rb +108 -0
- metadata +83 -0
metadata
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: dispatch-rails
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.7.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Dispatch Team
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rails
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '7.1'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '9'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '7.1'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '9'
|
|
32
|
+
description: 'Two ways to feed Dispatch from a Rails app: an optional floating bug-report
|
|
33
|
+
widget for UI apps, and headless server-side exception tracking for API-only apps
|
|
34
|
+
(Sentry-compatible wire format, structured error responses, and a programmatic report
|
|
35
|
+
helper). Captures URL, user, and environment metadata automatically.'
|
|
36
|
+
email:
|
|
37
|
+
- hello@dispatchit.app
|
|
38
|
+
executables: []
|
|
39
|
+
extensions: []
|
|
40
|
+
extra_rdoc_files: []
|
|
41
|
+
files:
|
|
42
|
+
- README.md
|
|
43
|
+
- app/assets/javascripts/dispatch/error_tracker.js
|
|
44
|
+
- app/assets/javascripts/dispatch/widget.js
|
|
45
|
+
- app/helpers/dispatch/widget_helper.rb
|
|
46
|
+
- app/views/dispatch/_error_tracker.html.erb
|
|
47
|
+
- app/views/dispatch/_widget.html.erb
|
|
48
|
+
- lib/dispatch-rails.rb
|
|
49
|
+
- lib/dispatch/rails/configuration.rb
|
|
50
|
+
- lib/dispatch/rails/engine.rb
|
|
51
|
+
- lib/dispatch/rails/error_subscriber.rb
|
|
52
|
+
- lib/dispatch/rails/event_builder.rb
|
|
53
|
+
- lib/dispatch/rails/heartbeat_aggregator.rb
|
|
54
|
+
- lib/dispatch/rails/heartbeat_middleware.rb
|
|
55
|
+
- lib/dispatch/rails/middleware.rb
|
|
56
|
+
- lib/dispatch/rails/rake_handler.rb
|
|
57
|
+
- lib/dispatch/rails/reporter.rb
|
|
58
|
+
- lib/dispatch/rails/response_annotator.rb
|
|
59
|
+
- lib/dispatch/rails/transport.rb
|
|
60
|
+
- lib/dispatch/rails/version.rb
|
|
61
|
+
homepage: https://dispatchit.app
|
|
62
|
+
licenses:
|
|
63
|
+
- MIT
|
|
64
|
+
metadata: {}
|
|
65
|
+
rdoc_options: []
|
|
66
|
+
require_paths:
|
|
67
|
+
- lib
|
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '3.2'
|
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
|
+
requirements:
|
|
75
|
+
- - ">="
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: '0'
|
|
78
|
+
requirements: []
|
|
79
|
+
rubygems_version: 3.6.9
|
|
80
|
+
specification_version: 4
|
|
81
|
+
summary: Bug reporting + server-side exception tracking for Rails, piping into Dispatch
|
|
82
|
+
(the AI-native ticketing system)
|
|
83
|
+
test_files: []
|