peek-performance_bar 1.1.4 → 1.1.5
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/CHANGELOG.md +8 -0
- data/lib/peek-performance_bar/version.rb +1 -1
- data/lib/rack/process_utilization.rb +0 -3
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2c04d7b3f6ba4afd971e159eb2983568f5764e3
|
|
4
|
+
data.tar.gz: 5ae24118aec944b1b484400206a58c4f94356083
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edb58ad8a521fe61d63aee6d9d2e1c673d6903683d6eb60df350f7fce8c3f836aebd3c2d9486ab3e5906fe2e5c7e7c27e492572e02803cdd1833309a47e9c81a
|
|
7
|
+
data.tar.gz: ab30b7b810f8dc7dc43298c462e4e5f9dbb1a69b8960c1b7e72856ea9f15080f6d2b4b310db01fca05adcf983a3f63c7de948e9a91ee0be2619fff7858f66445
|
data/CHANGELOG.md
CHANGED
|
@@ -18,3 +18,11 @@
|
|
|
18
18
|
# 1.1.3
|
|
19
19
|
|
|
20
20
|
- Use auto-gravity for tooltips on Peek bars that may be fixed to the bottom of the window.
|
|
21
|
+
|
|
22
|
+
# 1.1.4
|
|
23
|
+
|
|
24
|
+
- Fixed incorrect time on initial page load with newer Turbolinks - #17 (@brandonweiss)
|
|
25
|
+
|
|
26
|
+
# 1.1.5
|
|
27
|
+
|
|
28
|
+
- Don't strip `X-Request-Start` header which New Relic relies on. - #20
|
|
@@ -132,9 +132,6 @@ module Rack
|
|
|
132
132
|
env['process.request_start'] = @start.to_f
|
|
133
133
|
env['process.total_requests'] = total_requests
|
|
134
134
|
|
|
135
|
-
# newrelic X-Request-Start
|
|
136
|
-
env.delete('HTTP_X_REQUEST_START')
|
|
137
|
-
|
|
138
135
|
status, headers, body = @app.call(env)
|
|
139
136
|
body = Body.new(body) { record_request }
|
|
140
137
|
[status, headers, body]
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: peek-performance_bar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Garrett Bjerkhoel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: peek
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 0.1.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 0.1.0
|
|
27
27
|
description: Take a peek into the MySQL queries made during your application's requests.
|
|
@@ -31,7 +31,7 @@ executables: []
|
|
|
31
31
|
extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
|
-
- .gitignore
|
|
34
|
+
- ".gitignore"
|
|
35
35
|
- CHANGELOG.md
|
|
36
36
|
- Gemfile
|
|
37
37
|
- LICENSE.txt
|
|
@@ -57,17 +57,17 @@ require_paths:
|
|
|
57
57
|
- lib
|
|
58
58
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
59
|
requirements:
|
|
60
|
-
- -
|
|
60
|
+
- - ">="
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
62
|
version: '0'
|
|
63
63
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
64
|
requirements:
|
|
65
|
-
- -
|
|
65
|
+
- - ">="
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
67
|
version: '0'
|
|
68
68
|
requirements: []
|
|
69
69
|
rubyforge_project:
|
|
70
|
-
rubygems_version: 2.
|
|
70
|
+
rubygems_version: 2.2.2
|
|
71
71
|
signing_key:
|
|
72
72
|
specification_version: 4
|
|
73
73
|
summary: Take a peek into the MySQL queries made during your application's requests.
|