stackprof 0.2.12 → 0.2.17
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/.github/workflows/ci.yml +43 -0
- data/.gitignore +1 -1
- data/CHANGELOG.md +13 -2
- data/README.md +66 -51
- data/Rakefile +11 -25
- data/bin/stackprof +14 -4
- data/ext/stackprof/extconf.rb +9 -0
- data/ext/stackprof/stackprof.c +788 -0
- data/lib/stackprof.rb +4 -0
- data/lib/stackprof/middleware.rb +8 -2
- data/lib/stackprof/report.rb +270 -9
- data/stackprof.gemspec +11 -2
- data/test/test_middleware.rb +6 -0
- data/test/test_stackprof.rb +112 -11
- data/vendor/FlameGraph/flamegraph.pl +751 -85
- metadata +14 -12
- data/.travis.yml +0 -8
- 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.17
|
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: 2021-05-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|
@@ -63,11 +63,10 @@ extensions:
|
|
63
63
|
- ext/stackprof/extconf.rb
|
64
64
|
extra_rdoc_files: []
|
65
65
|
files:
|
66
|
+
- ".github/workflows/ci.yml"
|
66
67
|
- ".gitignore"
|
67
|
-
- ".travis.yml"
|
68
68
|
- CHANGELOG.md
|
69
69
|
- Gemfile
|
70
|
-
- Gemfile.lock
|
71
70
|
- LICENSE
|
72
71
|
- README.md
|
73
72
|
- Rakefile
|
@@ -93,8 +92,12 @@ files:
|
|
93
92
|
homepage: http://github.com/tmm1/stackprof
|
94
93
|
licenses:
|
95
94
|
- MIT
|
96
|
-
metadata:
|
97
|
-
|
95
|
+
metadata:
|
96
|
+
bug_tracker_uri: https://github.com/tmm1/stackprof/issues
|
97
|
+
changelog_uri: https://github.com/tmm1/stackprof/blob/v0.2.17/CHANGELOG.md
|
98
|
+
documentation_uri: https://www.rubydoc.info/gems/stackprof/0.2.17
|
99
|
+
source_code_uri: https://github.com/tmm1/stackprof/tree/v0.2.17
|
100
|
+
post_install_message:
|
98
101
|
rdoc_options: []
|
99
102
|
require_paths:
|
100
103
|
- lib
|
@@ -102,16 +105,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
102
105
|
requirements:
|
103
106
|
- - ">="
|
104
107
|
- !ruby/object:Gem::Version
|
105
|
-
version: '
|
108
|
+
version: '2.2'
|
106
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
107
110
|
requirements:
|
108
111
|
- - ">="
|
109
112
|
- !ruby/object:Gem::Version
|
110
113
|
version: '0'
|
111
114
|
requirements: []
|
112
|
-
|
113
|
-
|
114
|
-
signing_key:
|
115
|
+
rubygems_version: 3.1.2
|
116
|
+
signing_key:
|
115
117
|
specification_version: 4
|
116
|
-
summary: sampling callstack-profiler for ruby 2.
|
118
|
+
summary: sampling callstack-profiler for ruby 2.2+
|
117
119
|
test_files: []
|
data/.travis.yml
DELETED
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
|