railscope 0.1.0 → 0.1.2
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/client/src/App.tsx +2 -0
- data/client/src/screens/commands/Show.tsx +1 -0
- data/client/src/screens/exceptions/Show.tsx +3 -0
- data/client/src/screens/jobs/Show.tsx +3 -0
- data/client/src/screens/models/Index.tsx +162 -10
- data/client/src/screens/models/Show.tsx +289 -0
- data/client/src/screens/queries/Show.tsx +3 -0
- data/client/src/screens/requests/Show.tsx +3 -0
- data/client/src/screens/views/Show.tsx +3 -0
- data/lib/generators/railscope/install_generator.rb +2 -1
- data/lib/generators/railscope/templates/initializer.rb +12 -2
- data/lib/railscope/engine.rb +3 -0
- data/lib/railscope/subscribers/model_subscriber.rb +84 -0
- data/lib/railscope/version.rb +1 -1
- data/lib/railscope.rb +9 -2
- data/public/railscope/assets/app.js +13 -13
- metadata +7 -5
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: railscope
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Phelipe Tussolini
|
|
@@ -90,6 +90,7 @@ files:
|
|
|
90
90
|
- client/src/screens/logs/Index.tsx
|
|
91
91
|
- client/src/screens/mail/Index.tsx
|
|
92
92
|
- client/src/screens/models/Index.tsx
|
|
93
|
+
- client/src/screens/models/Show.tsx
|
|
93
94
|
- client/src/screens/notifications/Index.tsx
|
|
94
95
|
- client/src/screens/queries/Index.tsx
|
|
95
96
|
- client/src/screens/queries/Show.tsx
|
|
@@ -120,6 +121,7 @@ files:
|
|
|
120
121
|
- lib/railscope/subscribers/command_subscriber.rb
|
|
121
122
|
- lib/railscope/subscribers/exception_subscriber.rb
|
|
122
123
|
- lib/railscope/subscribers/job_subscriber.rb
|
|
124
|
+
- lib/railscope/subscribers/model_subscriber.rb
|
|
123
125
|
- lib/railscope/subscribers/query_subscriber.rb
|
|
124
126
|
- lib/railscope/subscribers/request_subscriber.rb
|
|
125
127
|
- lib/railscope/subscribers/view_subscriber.rb
|
|
@@ -129,14 +131,14 @@ files:
|
|
|
129
131
|
- public/railscope/assets/app.js
|
|
130
132
|
- public/railscope/assets/index.html
|
|
131
133
|
- sig/railscope.rbs
|
|
132
|
-
homepage: https://github.com/wptussolini/
|
|
134
|
+
homepage: https://github.com/wptussolini/railscope
|
|
133
135
|
licenses:
|
|
134
136
|
- MIT
|
|
135
137
|
metadata:
|
|
136
138
|
allowed_push_host: https://rubygems.org
|
|
137
|
-
homepage_uri: https://github.com/wptussolini/
|
|
138
|
-
source_code_uri: https://github.com/wptussolini/
|
|
139
|
-
changelog_uri: https://github.com/wptussolini/
|
|
139
|
+
homepage_uri: https://github.com/wptussolini/railscope
|
|
140
|
+
source_code_uri: https://github.com/wptussolini/railscope
|
|
141
|
+
changelog_uri: https://github.com/wptussolini/railscope/blob/main/railscope/CHANGELOG.md
|
|
140
142
|
rdoc_options: []
|
|
141
143
|
require_paths:
|
|
142
144
|
- lib
|