stackprof 0.2.11 → 0.2.16
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 +5 -5
- data/.gitignore +2 -0
- data/.travis.yml +21 -8
- data/CHANGELOG.md +14 -0
- data/Dockerfile +21 -0
- data/README.md +39 -19
- data/bin/stackprof +14 -4
- data/ext/stackprof/stackprof.c +131 -34
- data/lib/stackprof.rb +4 -0
- data/lib/stackprof/middleware.rb +23 -7
- data/lib/stackprof/report.rb +271 -10
- data/stackprof.gemspec +11 -2
- data/test/test_middleware.rb +13 -7
- data/test/test_stackprof.rb +97 -2
- data/vendor/FlameGraph/flamegraph.pl +751 -85
- metadata +15 -11
- data/Gemfile.lock +0 -27
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stackprof
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aman Gupta
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|
@@ -65,8 +65,9 @@ extra_rdoc_files: []
|
|
65
65
|
files:
|
66
66
|
- ".gitignore"
|
67
67
|
- ".travis.yml"
|
68
|
+
- CHANGELOG.md
|
69
|
+
- Dockerfile
|
68
70
|
- Gemfile
|
69
|
-
- Gemfile.lock
|
70
71
|
- LICENSE
|
71
72
|
- README.md
|
72
73
|
- Rakefile
|
@@ -92,8 +93,12 @@ files:
|
|
92
93
|
homepage: http://github.com/tmm1/stackprof
|
93
94
|
licenses:
|
94
95
|
- MIT
|
95
|
-
metadata:
|
96
|
-
|
96
|
+
metadata:
|
97
|
+
bug_tracker_uri: https://github.com/tmm1/stackprof/issues
|
98
|
+
changelog_uri: https://github.com/tmm1/stackprof/blob/v0.2.16/CHANGELOG.md
|
99
|
+
documentation_uri: https://www.rubydoc.info/gems/stackprof/0.2.16
|
100
|
+
source_code_uri: https://github.com/tmm1/stackprof/tree/v0.2.16
|
101
|
+
post_install_message:
|
97
102
|
rdoc_options: []
|
98
103
|
require_paths:
|
99
104
|
- lib
|
@@ -101,16 +106,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
101
106
|
requirements:
|
102
107
|
- - ">="
|
103
108
|
- !ruby/object:Gem::Version
|
104
|
-
version: '
|
109
|
+
version: '2.2'
|
105
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
111
|
requirements:
|
107
112
|
- - ">="
|
108
113
|
- !ruby/object:Gem::Version
|
109
114
|
version: '0'
|
110
115
|
requirements: []
|
111
|
-
|
112
|
-
|
113
|
-
signing_key:
|
116
|
+
rubygems_version: 3.2.0.rc.2
|
117
|
+
signing_key:
|
114
118
|
specification_version: 4
|
115
|
-
summary: sampling callstack-profiler for ruby 2.
|
119
|
+
summary: sampling callstack-profiler for ruby 2.2+
|
116
120
|
test_files: []
|
data/Gemfile.lock
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
stackprof (0.2.11)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
metaclass (0.0.4)
|
10
|
-
minitest (5.4.1)
|
11
|
-
mocha (0.14.0)
|
12
|
-
metaclass (~> 0.0.1)
|
13
|
-
rake (10.3.2)
|
14
|
-
rake-compiler (0.9.3)
|
15
|
-
rake
|
16
|
-
|
17
|
-
PLATFORMS
|
18
|
-
ruby
|
19
|
-
|
20
|
-
DEPENDENCIES
|
21
|
-
minitest (~> 5.0)
|
22
|
-
mocha (~> 0.14)
|
23
|
-
rake-compiler (~> 0.9)
|
24
|
-
stackprof!
|
25
|
-
|
26
|
-
BUNDLED WITH
|
27
|
-
1.15.4
|