stackprof 0.2.15 → 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 +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +12 -1
- data/README.md +9 -2
- data/ext/stackprof/stackprof.c +15 -3
- data/lib/stackprof.rb +1 -1
- data/lib/stackprof/report.rb +44 -8
- data/stackprof.gemspec +8 -1
- data/test/test_stackprof.rb +9 -0
- data/vendor/FlameGraph/flamegraph.pl +751 -85
- metadata +11 -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.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
|
@@ -68,7 +68,6 @@ files:
|
|
68
68
|
- CHANGELOG.md
|
69
69
|
- Dockerfile
|
70
70
|
- Gemfile
|
71
|
-
- Gemfile.lock
|
72
71
|
- LICENSE
|
73
72
|
- README.md
|
74
73
|
- Rakefile
|
@@ -94,8 +93,12 @@ files:
|
|
94
93
|
homepage: http://github.com/tmm1/stackprof
|
95
94
|
licenses:
|
96
95
|
- MIT
|
97
|
-
metadata:
|
98
|
-
|
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:
|
99
102
|
rdoc_options: []
|
100
103
|
require_paths:
|
101
104
|
- lib
|
@@ -110,8 +113,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
113
|
- !ruby/object:Gem::Version
|
111
114
|
version: '0'
|
112
115
|
requirements: []
|
113
|
-
rubygems_version: 3.
|
114
|
-
signing_key:
|
116
|
+
rubygems_version: 3.2.0.rc.2
|
117
|
+
signing_key:
|
115
118
|
specification_version: 4
|
116
119
|
summary: sampling callstack-profiler for ruby 2.2+
|
117
120
|
test_files: []
|
data/Gemfile.lock
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
stackprof (0.2.13)
|
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.16.0
|