ruby-prof 1.4.4-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGES +608 -0
- data/LICENSE +25 -0
- data/README.md +5 -0
- data/Rakefile +98 -0
- data/bin/ruby-prof +328 -0
- data/bin/ruby-prof-check-trace +45 -0
- data/ext/ruby_prof/extconf.rb +22 -0
- data/ext/ruby_prof/rp_aggregate_call_tree.c +59 -0
- data/ext/ruby_prof/rp_aggregate_call_tree.h +13 -0
- data/ext/ruby_prof/rp_allocation.c +287 -0
- data/ext/ruby_prof/rp_allocation.h +31 -0
- data/ext/ruby_prof/rp_call_tree.c +367 -0
- data/ext/ruby_prof/rp_call_tree.h +43 -0
- data/ext/ruby_prof/rp_call_trees.c +288 -0
- data/ext/ruby_prof/rp_call_trees.h +28 -0
- data/ext/ruby_prof/rp_measure_allocations.c +47 -0
- data/ext/ruby_prof/rp_measure_memory.c +46 -0
- data/ext/ruby_prof/rp_measure_process_time.c +66 -0
- data/ext/ruby_prof/rp_measure_wall_time.c +64 -0
- data/ext/ruby_prof/rp_measurement.c +237 -0
- data/ext/ruby_prof/rp_measurement.h +50 -0
- data/ext/ruby_prof/rp_method.c +491 -0
- data/ext/ruby_prof/rp_method.h +62 -0
- data/ext/ruby_prof/rp_profile.c +915 -0
- data/ext/ruby_prof/rp_profile.h +35 -0
- data/ext/ruby_prof/rp_stack.c +212 -0
- data/ext/ruby_prof/rp_stack.h +53 -0
- data/ext/ruby_prof/rp_thread.c +362 -0
- data/ext/ruby_prof/rp_thread.h +39 -0
- data/ext/ruby_prof/ruby_prof.c +52 -0
- data/ext/ruby_prof/ruby_prof.h +26 -0
- data/ext/ruby_prof/vc/ruby_prof.sln +39 -0
- data/ext/ruby_prof/vc/ruby_prof.vcxproj +160 -0
- data/lib/3.1/ruby_prof.so +0 -0
- data/lib/ruby-prof/assets/call_stack_printer.html.erb +711 -0
- data/lib/ruby-prof/assets/call_stack_printer.png +0 -0
- data/lib/ruby-prof/assets/graph_printer.html.erb +355 -0
- data/lib/ruby-prof/call_tree.rb +57 -0
- data/lib/ruby-prof/call_tree_visitor.rb +36 -0
- data/lib/ruby-prof/compatibility.rb +99 -0
- data/lib/ruby-prof/exclude_common_methods.rb +198 -0
- data/lib/ruby-prof/measurement.rb +17 -0
- data/lib/ruby-prof/method_info.rb +78 -0
- data/lib/ruby-prof/printers/abstract_printer.rb +137 -0
- data/lib/ruby-prof/printers/call_info_printer.rb +53 -0
- data/lib/ruby-prof/printers/call_stack_printer.rb +180 -0
- data/lib/ruby-prof/printers/call_tree_printer.rb +147 -0
- data/lib/ruby-prof/printers/dot_printer.rb +132 -0
- data/lib/ruby-prof/printers/flat_printer.rb +53 -0
- data/lib/ruby-prof/printers/graph_html_printer.rb +63 -0
- data/lib/ruby-prof/printers/graph_printer.rb +113 -0
- data/lib/ruby-prof/printers/multi_printer.rb +127 -0
- data/lib/ruby-prof/profile.rb +37 -0
- data/lib/ruby-prof/rack.rb +95 -0
- data/lib/ruby-prof/task.rb +147 -0
- data/lib/ruby-prof/thread.rb +20 -0
- data/lib/ruby-prof/version.rb +3 -0
- data/lib/ruby-prof.rb +52 -0
- data/lib/unprof.rb +10 -0
- data/ruby-prof.gemspec +64 -0
- data/test/abstract_printer_test.rb +26 -0
- data/test/alias_test.rb +122 -0
- data/test/basic_test.rb +43 -0
- data/test/call_tree_visitor_test.rb +32 -0
- data/test/call_trees_test.rb +66 -0
- data/test/duplicate_names_test.rb +32 -0
- data/test/dynamic_method_test.rb +67 -0
- data/test/enumerable_test.rb +21 -0
- data/test/exceptions_test.rb +24 -0
- data/test/exclude_methods_test.rb +151 -0
- data/test/exclude_threads_test.rb +53 -0
- data/test/fiber_test.rb +129 -0
- data/test/gc_test.rb +100 -0
- data/test/inverse_call_tree_test.rb +175 -0
- data/test/line_number_test.rb +158 -0
- data/test/marshal_test.rb +145 -0
- data/test/measure_allocations.rb +26 -0
- data/test/measure_allocations_test.rb +333 -0
- data/test/measure_memory_test.rb +688 -0
- data/test/measure_process_time_test.rb +1614 -0
- data/test/measure_times.rb +56 -0
- data/test/measure_wall_time_test.rb +426 -0
- data/test/multi_printer_test.rb +71 -0
- data/test/no_method_class_test.rb +15 -0
- data/test/pause_resume_test.rb +175 -0
- data/test/prime.rb +54 -0
- data/test/prime_script.rb +6 -0
- data/test/printer_call_stack_test.rb +27 -0
- data/test/printer_call_tree_test.rb +30 -0
- data/test/printer_flat_test.rb +99 -0
- data/test/printer_graph_html_test.rb +59 -0
- data/test/printer_graph_test.rb +40 -0
- data/test/printers_test.rb +141 -0
- data/test/printing_recursive_graph_test.rb +81 -0
- data/test/profile_test.rb +16 -0
- data/test/rack_test.rb +93 -0
- data/test/recursive_test.rb +430 -0
- data/test/singleton_test.rb +38 -0
- data/test/stack_printer_test.rb +64 -0
- data/test/start_stop_test.rb +109 -0
- data/test/test_helper.rb +13 -0
- data/test/thread_test.rb +144 -0
- data/test/unique_call_path_test.rb +136 -0
- data/test/yarv_test.rb +60 -0
- metadata +187 -0
metadata
ADDED
@@ -0,0 +1,187 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby-prof
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.4.4
|
5
|
+
platform: x64-mingw-ucrt
|
6
|
+
authors:
|
7
|
+
- Shugo Maeda, Charlie Savage, Roger Pack, Stefan Kaes
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-12-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: minitest
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake-compiler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: |
|
42
|
+
ruby-prof is a fast code profiler for Ruby. It is a C extension and
|
43
|
+
therefore is many times faster than the standard Ruby profiler. It
|
44
|
+
supports both flat and graph profiles. For each method, graph profiles
|
45
|
+
show how long the method ran, which methods called it and which
|
46
|
+
methods it called. RubyProf generate both text and html and can output
|
47
|
+
it to standard out or to a file.
|
48
|
+
email: shugo@ruby-lang.org, cfis@savagexi.com, rogerdpack@gmail.com, skaes@railsexpress.de
|
49
|
+
executables:
|
50
|
+
- ruby-prof
|
51
|
+
- ruby-prof-check-trace
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGES
|
56
|
+
- LICENSE
|
57
|
+
- README.md
|
58
|
+
- Rakefile
|
59
|
+
- bin/ruby-prof
|
60
|
+
- bin/ruby-prof-check-trace
|
61
|
+
- ext/ruby_prof/extconf.rb
|
62
|
+
- ext/ruby_prof/rp_aggregate_call_tree.c
|
63
|
+
- ext/ruby_prof/rp_aggregate_call_tree.h
|
64
|
+
- ext/ruby_prof/rp_allocation.c
|
65
|
+
- ext/ruby_prof/rp_allocation.h
|
66
|
+
- ext/ruby_prof/rp_call_tree.c
|
67
|
+
- ext/ruby_prof/rp_call_tree.h
|
68
|
+
- ext/ruby_prof/rp_call_trees.c
|
69
|
+
- ext/ruby_prof/rp_call_trees.h
|
70
|
+
- ext/ruby_prof/rp_measure_allocations.c
|
71
|
+
- ext/ruby_prof/rp_measure_memory.c
|
72
|
+
- ext/ruby_prof/rp_measure_process_time.c
|
73
|
+
- ext/ruby_prof/rp_measure_wall_time.c
|
74
|
+
- ext/ruby_prof/rp_measurement.c
|
75
|
+
- ext/ruby_prof/rp_measurement.h
|
76
|
+
- ext/ruby_prof/rp_method.c
|
77
|
+
- ext/ruby_prof/rp_method.h
|
78
|
+
- ext/ruby_prof/rp_profile.c
|
79
|
+
- ext/ruby_prof/rp_profile.h
|
80
|
+
- ext/ruby_prof/rp_stack.c
|
81
|
+
- ext/ruby_prof/rp_stack.h
|
82
|
+
- ext/ruby_prof/rp_thread.c
|
83
|
+
- ext/ruby_prof/rp_thread.h
|
84
|
+
- ext/ruby_prof/ruby_prof.c
|
85
|
+
- ext/ruby_prof/ruby_prof.h
|
86
|
+
- ext/ruby_prof/vc/ruby_prof.sln
|
87
|
+
- ext/ruby_prof/vc/ruby_prof.vcxproj
|
88
|
+
- lib/3.1/ruby_prof.so
|
89
|
+
- lib/ruby-prof.rb
|
90
|
+
- lib/ruby-prof/assets/call_stack_printer.html.erb
|
91
|
+
- lib/ruby-prof/assets/call_stack_printer.png
|
92
|
+
- lib/ruby-prof/assets/graph_printer.html.erb
|
93
|
+
- lib/ruby-prof/call_tree.rb
|
94
|
+
- lib/ruby-prof/call_tree_visitor.rb
|
95
|
+
- lib/ruby-prof/compatibility.rb
|
96
|
+
- lib/ruby-prof/exclude_common_methods.rb
|
97
|
+
- lib/ruby-prof/measurement.rb
|
98
|
+
- lib/ruby-prof/method_info.rb
|
99
|
+
- lib/ruby-prof/printers/abstract_printer.rb
|
100
|
+
- lib/ruby-prof/printers/call_info_printer.rb
|
101
|
+
- lib/ruby-prof/printers/call_stack_printer.rb
|
102
|
+
- lib/ruby-prof/printers/call_tree_printer.rb
|
103
|
+
- lib/ruby-prof/printers/dot_printer.rb
|
104
|
+
- lib/ruby-prof/printers/flat_printer.rb
|
105
|
+
- lib/ruby-prof/printers/graph_html_printer.rb
|
106
|
+
- lib/ruby-prof/printers/graph_printer.rb
|
107
|
+
- lib/ruby-prof/printers/multi_printer.rb
|
108
|
+
- lib/ruby-prof/profile.rb
|
109
|
+
- lib/ruby-prof/rack.rb
|
110
|
+
- lib/ruby-prof/task.rb
|
111
|
+
- lib/ruby-prof/thread.rb
|
112
|
+
- lib/ruby-prof/version.rb
|
113
|
+
- lib/unprof.rb
|
114
|
+
- ruby-prof.gemspec
|
115
|
+
- test/abstract_printer_test.rb
|
116
|
+
- test/alias_test.rb
|
117
|
+
- test/basic_test.rb
|
118
|
+
- test/call_tree_visitor_test.rb
|
119
|
+
- test/call_trees_test.rb
|
120
|
+
- test/duplicate_names_test.rb
|
121
|
+
- test/dynamic_method_test.rb
|
122
|
+
- test/enumerable_test.rb
|
123
|
+
- test/exceptions_test.rb
|
124
|
+
- test/exclude_methods_test.rb
|
125
|
+
- test/exclude_threads_test.rb
|
126
|
+
- test/fiber_test.rb
|
127
|
+
- test/gc_test.rb
|
128
|
+
- test/inverse_call_tree_test.rb
|
129
|
+
- test/line_number_test.rb
|
130
|
+
- test/marshal_test.rb
|
131
|
+
- test/measure_allocations.rb
|
132
|
+
- test/measure_allocations_test.rb
|
133
|
+
- test/measure_memory_test.rb
|
134
|
+
- test/measure_process_time_test.rb
|
135
|
+
- test/measure_times.rb
|
136
|
+
- test/measure_wall_time_test.rb
|
137
|
+
- test/multi_printer_test.rb
|
138
|
+
- test/no_method_class_test.rb
|
139
|
+
- test/pause_resume_test.rb
|
140
|
+
- test/prime.rb
|
141
|
+
- test/prime_script.rb
|
142
|
+
- test/printer_call_stack_test.rb
|
143
|
+
- test/printer_call_tree_test.rb
|
144
|
+
- test/printer_flat_test.rb
|
145
|
+
- test/printer_graph_html_test.rb
|
146
|
+
- test/printer_graph_test.rb
|
147
|
+
- test/printers_test.rb
|
148
|
+
- test/printing_recursive_graph_test.rb
|
149
|
+
- test/profile_test.rb
|
150
|
+
- test/rack_test.rb
|
151
|
+
- test/recursive_test.rb
|
152
|
+
- test/singleton_test.rb
|
153
|
+
- test/stack_printer_test.rb
|
154
|
+
- test/start_stop_test.rb
|
155
|
+
- test/test_helper.rb
|
156
|
+
- test/thread_test.rb
|
157
|
+
- test/unique_call_path_test.rb
|
158
|
+
- test/yarv_test.rb
|
159
|
+
homepage: https://github.com/ruby-prof/ruby-prof
|
160
|
+
licenses:
|
161
|
+
- BSD-2-Clause
|
162
|
+
metadata:
|
163
|
+
bug_tracker_uri: https://github.com/ruby-prof/ruby-prof/issues
|
164
|
+
changelog_uri: https://github.com/ruby-prof/ruby-prof/blob/master/CHANGES
|
165
|
+
documentation_uri: https://ruby-prof.github.io/
|
166
|
+
source_code_uri: https://github.com/ruby-prof/ruby-prof/tree/v1.4.4
|
167
|
+
post_install_message:
|
168
|
+
rdoc_options: []
|
169
|
+
require_paths:
|
170
|
+
- lib
|
171
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
172
|
+
requirements:
|
173
|
+
- - ">="
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: 2.7.0
|
176
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
requirements: []
|
182
|
+
rubygems_version: 3.3.26
|
183
|
+
signing_key:
|
184
|
+
specification_version: 4
|
185
|
+
summary: Fast Ruby profiler
|
186
|
+
test_files:
|
187
|
+
- test/test_helper.rb
|