rorvswild 1.5.7 → 1.5.8
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 +4 -4
- data/lib/rorvswild/local/middleware.rb +1 -0
- data/lib/rorvswild/plugin/resque.rb +2 -0
- data/lib/rorvswild/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75f2fdba9fff15749762886844ffe4847fea3db15f6f777313625b4d88d3ccb4
|
|
4
|
+
data.tar.gz: 6f03efbb858658d3e7ed29e73d90926e2217d1d733aa0246a364cf13e4492391
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7e3227c4499002874c4d2cd96c97181098d71b433873c6f139e90223d2022cd51357f37e98a3277434797bd81ef1ca122af02a71b5373436c93a51ac15aba53
|
|
7
|
+
data.tar.gz: 9d848e8f284c5d359d675362a48c095df672ebcc4d55855225aaca119585d41e8dbb7359cdde0c540aba0c3a710dddda922c7fe87aab3030b53c0c4088115f8f
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://badge.fury.io/rb/rorvswild)
|
|
5
5
|
[](https://codeclimate.com/github/BaseSecrete/rorvswild/maintainability)
|
|
6
6
|
|
|
7
|
-
<img align="right" src="
|
|
7
|
+
<img align="right" src="./images/rorvswild_logo.jpg">
|
|
8
8
|
|
|
9
9
|
*RoRvsWild* is a ruby gem to monitor performances and exceptions in Ruby on Rails applications.
|
|
10
10
|
|
|
@@ -21,7 +21,7 @@ It can also be used in your production and staging environments with an account
|
|
|
21
21
|
* Run `bundle install` in you terminal
|
|
22
22
|
* Restart your local server and you’ll see a small button in the bottom left corner of your page.
|
|
23
23
|
|
|
24
|
-

|
|
25
25
|
|
|
26
26
|
This is all what you need to do to monitor your local environment requests.
|
|
27
27
|
|
|
@@ -49,7 +49,7 @@ You can create unlimited apps on *rorvswild.com*. If you want to monitor your st
|
|
|
49
49
|
|
|
50
50
|
## Development mode: *RoRvsWild Local*
|
|
51
51
|
|
|
52
|
-

|
|
53
53
|
|
|
54
54
|
*RorVsWild Local* monitors the performances of requests in development environment.
|
|
55
55
|
It shows most of the requests performances insights *RoRvsWild.com* displays. **A big difference is everything works locally and no data is sent and recorded on our servers**. You don’t even need an account to use it.
|
|
@@ -69,7 +69,7 @@ If you are using `Rack::Deflater` middleware you won't see the small button in t
|
|
|
69
69
|
|
|
70
70
|
## Production mode: *RoRvsWild.com*
|
|
71
71
|
|
|
72
|
-

|
|
73
73
|
|
|
74
74
|
*RoRvsWild.com* makes it easy to monitor requests, background jobs and errors in your production and staging environment.
|
|
75
75
|
It also comes with some extra options listed below.
|
|
@@ -26,6 +26,7 @@ module RorVsWild
|
|
|
26
26
|
|
|
27
27
|
def serve_embed_profiler(env)
|
|
28
28
|
status, headers, body = app.call(env)
|
|
29
|
+
status = status.to_i
|
|
29
30
|
if status >= 200 && status < 300 && headers["Content-Type"] && headers["Content-Type"].include?("text/html")
|
|
30
31
|
if headers["Content-Encoding"]
|
|
31
32
|
log_incompatible_middleware_warning
|
data/lib/rorvswild/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rorvswild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexis Bernard
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2020-
|
|
12
|
+
date: 2020-10-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Performances and errors insights for rails developers.
|
|
15
15
|
email:
|