ruby-prof 0.14.1 → 0.14.2
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.
- data/CHANGES +2 -2
- data/Rakefile +9 -5
- data/doc/LICENSE.html +5 -5
- data/doc/README_rdoc.html +43 -46
- data/doc/Rack/RubyProf.html +6 -6
- data/doc/RubyProf/AbstractPrinter.html +1 -1
- data/doc/RubyProf/CallInfo.html +2 -2
- data/doc/RubyProf/CallInfoPrinter.html +1 -1
- data/doc/RubyProf/CallStackPrinter.html +42 -42
- data/doc/RubyProf/CallTreePrinter.html +8 -8
- data/doc/RubyProf/Cmd.html +38 -38
- data/doc/RubyProf/DotPrinter.html +2 -2
- data/doc/RubyProf/FlatPrinterWithLineNumbers.html +3 -3
- data/doc/RubyProf/GraphHtmlPrinter.html +3 -3
- data/doc/RubyProf/MethodInfo.html +2 -2
- data/doc/RubyProf/ProfileTask.html +7 -7
- data/doc/RubyProf.html +4 -5
- data/doc/created.rid +2 -2
- data/doc/examples/flat_txt.html +1 -1
- data/doc/examples/graph_txt.html +3 -3
- data/doc/index.html +43 -46
- data/doc/js/search_index.js +1 -1
- data/ext/ruby_prof/extconf.rb +0 -2
- data/ext/ruby_prof/rp_measure_wall_time.c +1 -1
- data/lib/ruby-prof/version.rb +1 -1
- metadata +65 -55
- checksums.yaml +0 -7
- data/doc/RubyProf/Test.html +0 -539
data/lib/ruby-prof/version.rb
CHANGED
metadata
CHANGED
@@ -1,57 +1,64 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-prof
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease:
|
5
|
+
version: 0.14.2
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Shugo Maeda, Charlie Savage, Roger Pack, Stefan Kaes
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
12
|
+
date: 2014-01-05 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: minitest
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
16
17
|
requirements:
|
17
|
-
- -
|
18
|
+
- - ~>
|
18
19
|
- !ruby/object:Gem::Version
|
19
20
|
version: '4.0'
|
20
|
-
|
21
|
+
none: false
|
21
22
|
prerelease: false
|
23
|
+
type: :development
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
23
25
|
requirements:
|
24
|
-
- -
|
26
|
+
- - ~>
|
25
27
|
- !ruby/object:Gem::Version
|
26
28
|
version: '4.0'
|
29
|
+
none: false
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: rake-compiler
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
30
33
|
requirements:
|
31
|
-
- -
|
34
|
+
- - '>='
|
32
35
|
- !ruby/object:Gem::Version
|
33
36
|
version: '0'
|
34
|
-
|
37
|
+
none: false
|
35
38
|
prerelease: false
|
39
|
+
type: :development
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
37
41
|
requirements:
|
38
|
-
- -
|
42
|
+
- - '>='
|
39
43
|
- !ruby/object:Gem::Version
|
40
44
|
version: '0'
|
45
|
+
none: false
|
41
46
|
- !ruby/object:Gem::Dependency
|
42
47
|
name: rdoc
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
44
49
|
requirements:
|
45
|
-
- -
|
50
|
+
- - '>='
|
46
51
|
- !ruby/object:Gem::Version
|
47
52
|
version: '0'
|
48
|
-
|
53
|
+
none: false
|
49
54
|
prerelease: false
|
55
|
+
type: :development
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
51
57
|
requirements:
|
52
|
-
- -
|
58
|
+
- - '>='
|
53
59
|
- !ruby/object:Gem::Version
|
54
60
|
version: '0'
|
61
|
+
none: false
|
55
62
|
description: |
|
56
63
|
ruby-prof is a fast code profiler for Ruby. It is a C extension and
|
57
64
|
therefore is many times faster than the standard Ruby profiler. It
|
@@ -69,45 +76,22 @@ extra_rdoc_files: []
|
|
69
76
|
files:
|
70
77
|
- CHANGES
|
71
78
|
- LICENSE
|
72
|
-
- README.rdoc
|
73
79
|
- Rakefile
|
80
|
+
- README.rdoc
|
81
|
+
- ruby-prof.gemspec
|
74
82
|
- bin/ruby-prof
|
75
83
|
- bin/ruby-prof-check-trace
|
76
|
-
- doc/LICENSE.html
|
77
|
-
- doc/README_rdoc.html
|
78
|
-
- doc/Rack.html
|
79
|
-
- doc/Rack/RubyProf.html
|
80
|
-
- doc/RubyProf.html
|
81
|
-
- doc/RubyProf/AbstractPrinter.html
|
82
|
-
- doc/RubyProf/AggregateCallInfo.html
|
83
|
-
- doc/RubyProf/CallInfo.html
|
84
|
-
- doc/RubyProf/CallInfoPrinter.html
|
85
|
-
- doc/RubyProf/CallInfoVisitor.html
|
86
|
-
- doc/RubyProf/CallStackPrinter.html
|
87
|
-
- doc/RubyProf/CallTreePrinter.html
|
88
|
-
- doc/RubyProf/Cmd.html
|
89
|
-
- doc/RubyProf/DotPrinter.html
|
90
|
-
- doc/RubyProf/FlatPrinter.html
|
91
|
-
- doc/RubyProf/FlatPrinterWithLineNumbers.html
|
92
|
-
- doc/RubyProf/GraphHtmlPrinter.html
|
93
|
-
- doc/RubyProf/GraphPrinter.html
|
94
|
-
- doc/RubyProf/MethodInfo.html
|
95
|
-
- doc/RubyProf/MultiPrinter.html
|
96
|
-
- doc/RubyProf/Profile.html
|
97
|
-
- doc/RubyProf/ProfileTask.html
|
98
|
-
- doc/RubyProf/Test.html
|
99
|
-
- doc/RubyProf/Thread.html
|
100
84
|
- doc/created.rid
|
101
85
|
- doc/examples/flat_txt.html
|
102
86
|
- doc/examples/graph_html.html
|
103
87
|
- doc/examples/graph_txt.html
|
104
|
-
- doc/fonts.css
|
105
88
|
- doc/fonts/Lato-Light.ttf
|
106
89
|
- doc/fonts/Lato-LightItalic.ttf
|
107
90
|
- doc/fonts/Lato-Regular.ttf
|
108
91
|
- doc/fonts/Lato-RegularItalic.ttf
|
109
92
|
- doc/fonts/SourceCodePro-Bold.ttf
|
110
93
|
- doc/fonts/SourceCodePro-Regular.ttf
|
94
|
+
- doc/fonts.css
|
111
95
|
- doc/images/add.png
|
112
96
|
- doc/images/arrow_up.png
|
113
97
|
- doc/images/brick.png
|
@@ -140,7 +124,30 @@ files:
|
|
140
124
|
- doc/js/search.js
|
141
125
|
- doc/js/search_index.js
|
142
126
|
- doc/js/searcher.js
|
127
|
+
- doc/LICENSE.html
|
128
|
+
- doc/Rack/RubyProf.html
|
129
|
+
- doc/Rack.html
|
143
130
|
- doc/rdoc.css
|
131
|
+
- doc/README_rdoc.html
|
132
|
+
- doc/RubyProf/AbstractPrinter.html
|
133
|
+
- doc/RubyProf/AggregateCallInfo.html
|
134
|
+
- doc/RubyProf/CallInfo.html
|
135
|
+
- doc/RubyProf/CallInfoPrinter.html
|
136
|
+
- doc/RubyProf/CallInfoVisitor.html
|
137
|
+
- doc/RubyProf/CallStackPrinter.html
|
138
|
+
- doc/RubyProf/CallTreePrinter.html
|
139
|
+
- doc/RubyProf/Cmd.html
|
140
|
+
- doc/RubyProf/DotPrinter.html
|
141
|
+
- doc/RubyProf/FlatPrinter.html
|
142
|
+
- doc/RubyProf/FlatPrinterWithLineNumbers.html
|
143
|
+
- doc/RubyProf/GraphHtmlPrinter.html
|
144
|
+
- doc/RubyProf/GraphPrinter.html
|
145
|
+
- doc/RubyProf/MethodInfo.html
|
146
|
+
- doc/RubyProf/MultiPrinter.html
|
147
|
+
- doc/RubyProf/Profile.html
|
148
|
+
- doc/RubyProf/ProfileTask.html
|
149
|
+
- doc/RubyProf/Thread.html
|
150
|
+
- doc/RubyProf.html
|
144
151
|
- doc/table_of_contents.html
|
145
152
|
- examples/empty.png
|
146
153
|
- examples/flat.txt
|
@@ -157,9 +164,7 @@ files:
|
|
157
164
|
- examples/stack.html
|
158
165
|
- ext/ruby_prof/extconf.rb
|
159
166
|
- ext/ruby_prof/rp_call_info.c
|
160
|
-
- ext/ruby_prof/rp_call_info.h
|
161
167
|
- ext/ruby_prof/rp_measure.c
|
162
|
-
- ext/ruby_prof/rp_measure.h
|
163
168
|
- ext/ruby_prof/rp_measure_allocations.c
|
164
169
|
- ext/ruby_prof/rp_measure_cpu_time.c
|
165
170
|
- ext/ruby_prof/rp_measure_gc_runs.c
|
@@ -168,26 +173,34 @@ files:
|
|
168
173
|
- ext/ruby_prof/rp_measure_process_time.c
|
169
174
|
- ext/ruby_prof/rp_measure_wall_time.c
|
170
175
|
- ext/ruby_prof/rp_method.c
|
171
|
-
- ext/ruby_prof/rp_method.h
|
172
176
|
- ext/ruby_prof/rp_stack.c
|
173
|
-
- ext/ruby_prof/rp_stack.h
|
174
177
|
- ext/ruby_prof/rp_thread.c
|
175
|
-
- ext/ruby_prof/rp_thread.h
|
176
178
|
- ext/ruby_prof/ruby_prof.c
|
179
|
+
- ext/ruby_prof/rp_call_info.h
|
180
|
+
- ext/ruby_prof/rp_measure.h
|
181
|
+
- ext/ruby_prof/rp_method.h
|
182
|
+
- ext/ruby_prof/rp_stack.h
|
183
|
+
- ext/ruby_prof/rp_thread.h
|
177
184
|
- ext/ruby_prof/ruby_prof.h
|
178
185
|
- ext/ruby_prof/vc/ruby_prof.sln
|
179
186
|
- ext/ruby_prof/vc/ruby_prof_18.vcxproj
|
180
187
|
- ext/ruby_prof/vc/ruby_prof_19.vcxproj
|
181
188
|
- ext/ruby_prof/vc/ruby_prof_20.vcxproj
|
182
189
|
- lib/ruby-prof.rb
|
190
|
+
- lib/unprof.rb
|
183
191
|
- lib/ruby-prof/aggregate_call_info.rb
|
184
192
|
- lib/ruby-prof/call_info.rb
|
185
193
|
- lib/ruby-prof/call_info_visitor.rb
|
186
194
|
- lib/ruby-prof/compatibility.rb
|
195
|
+
- lib/ruby-prof/method_info.rb
|
196
|
+
- lib/ruby-prof/profile.rb
|
197
|
+
- lib/ruby-prof/rack.rb
|
198
|
+
- lib/ruby-prof/task.rb
|
199
|
+
- lib/ruby-prof/thread.rb
|
200
|
+
- lib/ruby-prof/version.rb
|
187
201
|
- lib/ruby-prof/images/empty.png
|
188
202
|
- lib/ruby-prof/images/minus.png
|
189
203
|
- lib/ruby-prof/images/plus.png
|
190
|
-
- lib/ruby-prof/method_info.rb
|
191
204
|
- lib/ruby-prof/printers/abstract_printer.rb
|
192
205
|
- lib/ruby-prof/printers/call_info_printer.rb
|
193
206
|
- lib/ruby-prof/printers/call_stack_printer.rb
|
@@ -198,13 +211,6 @@ files:
|
|
198
211
|
- lib/ruby-prof/printers/graph_html_printer.rb
|
199
212
|
- lib/ruby-prof/printers/graph_printer.rb
|
200
213
|
- lib/ruby-prof/printers/multi_printer.rb
|
201
|
-
- lib/ruby-prof/profile.rb
|
202
|
-
- lib/ruby-prof/rack.rb
|
203
|
-
- lib/ruby-prof/task.rb
|
204
|
-
- lib/ruby-prof/thread.rb
|
205
|
-
- lib/ruby-prof/version.rb
|
206
|
-
- lib/unprof.rb
|
207
|
-
- ruby-prof.gemspec
|
208
214
|
- test/aggregate_test.rb
|
209
215
|
- test/basic_test.rb
|
210
216
|
- test/call_info_test.rb
|
@@ -241,26 +247,30 @@ files:
|
|
241
247
|
- test/yarv_test.rb
|
242
248
|
homepage: https://github.com/ruby-prof/ruby-prof
|
243
249
|
licenses: []
|
244
|
-
metadata: {}
|
245
250
|
post_install_message:
|
246
251
|
rdoc_options: []
|
247
252
|
require_paths:
|
248
253
|
- lib
|
249
254
|
required_ruby_version: !ruby/object:Gem::Requirement
|
250
255
|
requirements:
|
251
|
-
- -
|
256
|
+
- - '>='
|
252
257
|
- !ruby/object:Gem::Version
|
253
258
|
version: 1.9.3
|
259
|
+
none: false
|
254
260
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
255
261
|
requirements:
|
256
|
-
- -
|
262
|
+
- - '>='
|
257
263
|
- !ruby/object:Gem::Version
|
264
|
+
hash: -374709300685905982
|
265
|
+
segments:
|
266
|
+
- 0
|
258
267
|
version: '0'
|
268
|
+
none: false
|
259
269
|
requirements: []
|
260
270
|
rubyforge_project:
|
261
|
-
rubygems_version:
|
271
|
+
rubygems_version: 1.8.25
|
262
272
|
signing_key:
|
263
|
-
specification_version:
|
273
|
+
specification_version: 3
|
264
274
|
summary: Fast Ruby profiler
|
265
275
|
test_files:
|
266
276
|
- test/test_helper.rb
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 7be12cc29e6deeaae03294e9ca1bf5ff66b4f782
|
4
|
-
data.tar.gz: 6f2acbced08986308da8b7107195d1ac6da453f5
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 6197f645bbc94e76b14fae2ad0a28981ee6587a1716f972bfd175d7356b917d1b309b9bacb8d4c93382da734eb2c91435d3a4b790a61b73151eb8bfbc80c57cf
|
7
|
-
data.tar.gz: daad5d8d6c9daed2e74580fbc58c5a62859ed979f0ad81cd961ced7e1740ce01236854e9ef8f45db0d182e1af8e282fea23115e691cd7b49e6ae365ede5f2afa
|