ruby-prof 1.0.0
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 +7 -0
- data/CHANGES +523 -0
- data/LICENSE +25 -0
- data/README.rdoc +5 -0
- data/Rakefile +110 -0
- data/bin/ruby-prof +380 -0
- data/bin/ruby-prof-check-trace +45 -0
- data/ext/ruby_prof/extconf.rb +36 -0
- data/ext/ruby_prof/rp_allocation.c +292 -0
- data/ext/ruby_prof/rp_allocation.h +31 -0
- data/ext/ruby_prof/rp_call_info.c +283 -0
- data/ext/ruby_prof/rp_call_info.h +35 -0
- data/ext/ruby_prof/rp_measure_allocations.c +52 -0
- data/ext/ruby_prof/rp_measure_memory.c +42 -0
- data/ext/ruby_prof/rp_measure_process_time.c +63 -0
- data/ext/ruby_prof/rp_measure_wall_time.c +62 -0
- data/ext/ruby_prof/rp_measurement.c +236 -0
- data/ext/ruby_prof/rp_measurement.h +49 -0
- data/ext/ruby_prof/rp_method.c +642 -0
- data/ext/ruby_prof/rp_method.h +70 -0
- data/ext/ruby_prof/rp_profile.c +881 -0
- data/ext/ruby_prof/rp_profile.h +36 -0
- data/ext/ruby_prof/rp_stack.c +196 -0
- data/ext/ruby_prof/rp_stack.h +56 -0
- data/ext/ruby_prof/rp_thread.c +338 -0
- data/ext/ruby_prof/rp_thread.h +36 -0
- data/ext/ruby_prof/ruby_prof.c +48 -0
- data/ext/ruby_prof/ruby_prof.h +17 -0
- data/ext/ruby_prof/vc/ruby_prof.sln +31 -0
- data/ext/ruby_prof/vc/ruby_prof.vcxproj +143 -0
- data/lib/ruby-prof.rb +53 -0
- data/lib/ruby-prof/assets/call_stack_printer.css.html +117 -0
- data/lib/ruby-prof/assets/call_stack_printer.js.html +385 -0
- data/lib/ruby-prof/assets/call_stack_printer.png +0 -0
- data/lib/ruby-prof/assets/graph_printer.html.erb +356 -0
- data/lib/ruby-prof/call_info.rb +57 -0
- data/lib/ruby-prof/call_info_visitor.rb +38 -0
- data/lib/ruby-prof/compatibility.rb +109 -0
- data/lib/ruby-prof/exclude_common_methods.rb +198 -0
- data/lib/ruby-prof/measurement.rb +14 -0
- data/lib/ruby-prof/method_info.rb +90 -0
- data/lib/ruby-prof/printers/abstract_printer.rb +118 -0
- data/lib/ruby-prof/printers/call_info_printer.rb +51 -0
- data/lib/ruby-prof/printers/call_stack_printer.rb +269 -0
- data/lib/ruby-prof/printers/call_tree_printer.rb +151 -0
- data/lib/ruby-prof/printers/dot_printer.rb +132 -0
- data/lib/ruby-prof/printers/flat_printer.rb +52 -0
- data/lib/ruby-prof/printers/graph_html_printer.rb +64 -0
- data/lib/ruby-prof/printers/graph_printer.rb +114 -0
- data/lib/ruby-prof/printers/multi_printer.rb +127 -0
- data/lib/ruby-prof/profile.rb +33 -0
- data/lib/ruby-prof/rack.rb +171 -0
- data/lib/ruby-prof/task.rb +147 -0
- data/lib/ruby-prof/thread.rb +35 -0
- data/lib/ruby-prof/version.rb +3 -0
- data/lib/unprof.rb +10 -0
- data/ruby-prof.gemspec +58 -0
- data/test/abstract_printer_test.rb +26 -0
- data/test/alias_test.rb +129 -0
- data/test/basic_test.rb +129 -0
- data/test/call_info_visitor_test.rb +31 -0
- data/test/duplicate_names_test.rb +32 -0
- data/test/dynamic_method_test.rb +53 -0
- data/test/enumerable_test.rb +21 -0
- data/test/exceptions_test.rb +24 -0
- data/test/exclude_methods_test.rb +146 -0
- data/test/exclude_threads_test.rb +53 -0
- data/test/line_number_test.rb +161 -0
- data/test/marshal_test.rb +119 -0
- data/test/measure_allocations.rb +30 -0
- data/test/measure_allocations_test.rb +385 -0
- data/test/measure_allocations_trace_test.rb +385 -0
- data/test/measure_memory_trace_test.rb +756 -0
- data/test/measure_process_time_test.rb +849 -0
- data/test/measure_times.rb +54 -0
- data/test/measure_wall_time_test.rb +459 -0
- data/test/multi_printer_test.rb +71 -0
- data/test/no_method_class_test.rb +15 -0
- data/test/parser_timings.rb +24 -0
- data/test/pause_resume_test.rb +166 -0
- data/test/prime.rb +56 -0
- data/test/printer_call_tree_test.rb +31 -0
- data/test/printer_flat_test.rb +68 -0
- data/test/printer_graph_html_test.rb +60 -0
- data/test/printer_graph_test.rb +41 -0
- data/test/printers_test.rb +141 -0
- data/test/printing_recursive_graph_test.rb +81 -0
- data/test/rack_test.rb +157 -0
- data/test/recursive_test.rb +210 -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 +24 -0
- data/test/thread_test.rb +144 -0
- data/test/unique_call_path_test.rb +190 -0
- data/test/yarv_test.rb +56 -0
- metadata +189 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
|
|
3
|
+
require 'ruby-prof/exclude_common_methods'
|
|
4
|
+
|
|
5
|
+
module RubyProf
|
|
6
|
+
class Profile
|
|
7
|
+
# :nodoc:
|
|
8
|
+
def measure_mode_string
|
|
9
|
+
case self.measure_mode
|
|
10
|
+
when WALL_TIME then "wall_time"
|
|
11
|
+
when PROCESS_TIME then "process_time"
|
|
12
|
+
when ALLOCATIONS then "allocations"
|
|
13
|
+
when MEMORY then "memory"
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
# Hides methods that, when represented as a call graph, have
|
|
18
|
+
# extremely large in and out degrees and make navigation impossible.
|
|
19
|
+
def exclude_common_methods!
|
|
20
|
+
ExcludeCommonMethods.apply!(self)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def exclude_methods!(mod, *method_or_methods)
|
|
24
|
+
[method_or_methods].flatten.each do |name|
|
|
25
|
+
exclude_method!(mod, name)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def exclude_singleton_methods!(mod, *method_or_methods)
|
|
30
|
+
exclude_methods!(mod.singleton_class, *method_or_methods)
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
require 'tmpdir'
|
|
3
|
+
|
|
4
|
+
module Rack
|
|
5
|
+
class RubyProf
|
|
6
|
+
def initialize(app, options = {})
|
|
7
|
+
@app = app
|
|
8
|
+
|
|
9
|
+
options[:min_percent] ||= 1
|
|
10
|
+
|
|
11
|
+
options[:path] ||= Dir.tmpdir
|
|
12
|
+
FileUtils.mkdir_p(options[:path])
|
|
13
|
+
|
|
14
|
+
@skip_paths = options[:skip_paths] || [%r{^/assets}, %r{\.(css|js|png|jpeg|jpg|gif)$}]
|
|
15
|
+
@only_paths = options[:only_paths]
|
|
16
|
+
|
|
17
|
+
@max_requests = options[:max_requests]
|
|
18
|
+
|
|
19
|
+
@options = options
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def call(env)
|
|
23
|
+
request = Rack::Request.new(env)
|
|
24
|
+
|
|
25
|
+
if should_profile?(request.path)
|
|
26
|
+
profiler.resume
|
|
27
|
+
begin
|
|
28
|
+
result = @app.call(env)
|
|
29
|
+
ensure
|
|
30
|
+
profiler.pause
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
if profiler.max_requests_reached?
|
|
34
|
+
prefix = if aggregate_requests?
|
|
35
|
+
nil
|
|
36
|
+
else
|
|
37
|
+
request.path.gsub('/', '-')[1..-1]
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
profiler.print!(prefix)
|
|
41
|
+
delete_profiler!
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
result
|
|
45
|
+
else
|
|
46
|
+
@app.call(env)
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
private
|
|
51
|
+
|
|
52
|
+
class RackProfiler
|
|
53
|
+
def initialize(options)
|
|
54
|
+
@options = options
|
|
55
|
+
|
|
56
|
+
@profile = ::RubyProf::Profile.new(profiling_options)
|
|
57
|
+
@profile.start
|
|
58
|
+
@profile.pause
|
|
59
|
+
|
|
60
|
+
@printer_klasses = options[:printers] || default_printers
|
|
61
|
+
|
|
62
|
+
@tmpdir = options[:path]
|
|
63
|
+
|
|
64
|
+
@max_requests = options[:max_requests] || 1
|
|
65
|
+
@requests_count = 0
|
|
66
|
+
|
|
67
|
+
@printed = false
|
|
68
|
+
# if running across multiple requests, we want to make sure that the
|
|
69
|
+
# ongoing profile is not lost if the process shuts down before the
|
|
70
|
+
# max request count is reached
|
|
71
|
+
ObjectSpace.define_finalizer(self, proc { print! })
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
def resume
|
|
75
|
+
@profile.resume
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
def pause
|
|
79
|
+
@profile.pause
|
|
80
|
+
@requests_count += 1
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
def max_requests_reached?
|
|
84
|
+
@requests_count >= @max_requests
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
def print!(prefix = nil)
|
|
88
|
+
return false if @printed || @requests_count == 0
|
|
89
|
+
|
|
90
|
+
data = @profile.stop
|
|
91
|
+
|
|
92
|
+
prefix ||= "multi-requests-#{@requests_count}"
|
|
93
|
+
|
|
94
|
+
@printer_klasses.each do |printer_klass, base_name|
|
|
95
|
+
printer = printer_klass.new(data)
|
|
96
|
+
|
|
97
|
+
if base_name.respond_to?(:call)
|
|
98
|
+
base_name = base_name.call
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
if printer_klass == ::RubyProf::MultiPrinter \
|
|
102
|
+
|| printer_klass == ::RubyProf::CallTreePrinter
|
|
103
|
+
printer.print(@options.merge(:profile => "#{prefix}-#{base_name}"))
|
|
104
|
+
else
|
|
105
|
+
file_name = ::File.join(@tmpdir, "#{prefix}-#{base_name}")
|
|
106
|
+
::File.open(file_name, 'wb') do |file|
|
|
107
|
+
printer.print(file, @options)
|
|
108
|
+
end
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
@printed = true
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
private
|
|
116
|
+
|
|
117
|
+
def profiling_options
|
|
118
|
+
options = {}
|
|
119
|
+
options[:measure_mode] = ::RubyProf.measure_mode
|
|
120
|
+
options[:exclude_threads] =
|
|
121
|
+
if @options[:ignore_existing_threads]
|
|
122
|
+
Thread.list.select{|t| t != Thread.current}
|
|
123
|
+
else
|
|
124
|
+
::RubyProf.exclude_threads
|
|
125
|
+
end
|
|
126
|
+
if @options[:request_thread_only]
|
|
127
|
+
options[:include_threads] = [Thread.current]
|
|
128
|
+
end
|
|
129
|
+
options
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
def default_printers
|
|
133
|
+
{::RubyProf::FlatPrinter => 'flat.txt',
|
|
134
|
+
::RubyProf::GraphPrinter => 'graph.txt',
|
|
135
|
+
::RubyProf::GraphHtmlPrinter => 'graph.html',
|
|
136
|
+
::RubyProf::CallStackPrinter => 'call_stack.html'}
|
|
137
|
+
end
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
def profiler
|
|
141
|
+
if aggregate_requests?
|
|
142
|
+
@@_shared_profiler ||= RackProfiler.new(@options)
|
|
143
|
+
else
|
|
144
|
+
@_profiler ||= RackProfiler.new(@options)
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
def delete_profiler!
|
|
149
|
+
if aggregate_requests?
|
|
150
|
+
@@_shared_profiler.print! if @@_shared_profiler
|
|
151
|
+
@@_shared_profiler = nil
|
|
152
|
+
else
|
|
153
|
+
@_profiler = nil
|
|
154
|
+
end
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
def aggregate_requests?
|
|
158
|
+
!@max_requests.nil?
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
def should_profile?(path)
|
|
162
|
+
return false if paths_match?(path, @skip_paths)
|
|
163
|
+
|
|
164
|
+
@only_paths ? paths_match?(path, @only_paths) : true
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
def paths_match?(path, paths)
|
|
168
|
+
paths.any? { |skip_path| skip_path =~ path }
|
|
169
|
+
end
|
|
170
|
+
end
|
|
171
|
+
end
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
|
|
4
|
+
require 'rake'
|
|
5
|
+
require 'rake/testtask'
|
|
6
|
+
require 'fileutils'
|
|
7
|
+
|
|
8
|
+
module RubyProf
|
|
9
|
+
|
|
10
|
+
# Define a task library for profiling unit tests with ruby-prof.
|
|
11
|
+
#
|
|
12
|
+
# All of the options provided by
|
|
13
|
+
# the Rake:TestTask are supported except the loader
|
|
14
|
+
# which is set to ruby-prof. For detailed information
|
|
15
|
+
# please refer to the Rake:TestTask documentation.
|
|
16
|
+
#
|
|
17
|
+
# ruby-prof specific options include:
|
|
18
|
+
#
|
|
19
|
+
# output_dir - For each file specified an output
|
|
20
|
+
# file with profile information will be
|
|
21
|
+
# written to the output directory.
|
|
22
|
+
# By default, the output directory is
|
|
23
|
+
# called "profile" and is created underneath
|
|
24
|
+
# the current working directory.
|
|
25
|
+
#
|
|
26
|
+
# printer - Specifies the output printer. Valid values include
|
|
27
|
+
# :flat, :graph, :graph_html and :call_tree.
|
|
28
|
+
#
|
|
29
|
+
# min_percent - Methods that take less than the specified percent
|
|
30
|
+
# will not be written out.
|
|
31
|
+
#
|
|
32
|
+
# Example:
|
|
33
|
+
#
|
|
34
|
+
# require 'ruby-prof/task'
|
|
35
|
+
#
|
|
36
|
+
# RubyProf::ProfileTask.new do |t|
|
|
37
|
+
# t.test_files = FileList['test/test*.rb']
|
|
38
|
+
# t.output_dir = "c:/temp"
|
|
39
|
+
# t.printer = :graph
|
|
40
|
+
# t.min_percent = 10
|
|
41
|
+
# end
|
|
42
|
+
#
|
|
43
|
+
# If rake is invoked with a "TEST=filename" command line option,
|
|
44
|
+
# then the list of test files will be overridden to include only the
|
|
45
|
+
# filename specified on the command line. This provides an easy way
|
|
46
|
+
# to run just one test.
|
|
47
|
+
#
|
|
48
|
+
# If rake is invoked with a "TESTOPTS=options" command line option,
|
|
49
|
+
# then the given options are passed to the test process after a
|
|
50
|
+
# '--'. This allows Test::Unit options to be passed to the test
|
|
51
|
+
# suite.
|
|
52
|
+
#
|
|
53
|
+
# Examples:
|
|
54
|
+
#
|
|
55
|
+
# rake profile # run tests normally
|
|
56
|
+
# rake profile TEST=just_one_file.rb # run just one test file.
|
|
57
|
+
# rake profile TESTOPTS="-v" # run in verbose mode
|
|
58
|
+
# rake profile TESTOPTS="--runner=fox" # use the fox test runner
|
|
59
|
+
|
|
60
|
+
class ProfileTask < Rake::TestTask
|
|
61
|
+
attr_accessor :output_dir
|
|
62
|
+
attr_accessor :min_percent
|
|
63
|
+
attr_accessor :printer
|
|
64
|
+
|
|
65
|
+
def initialize(name = :profile)
|
|
66
|
+
super(name)
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# Create the tasks defined by this task lib.
|
|
70
|
+
def define
|
|
71
|
+
lib_path = @libs.join(File::PATH_SEPARATOR)
|
|
72
|
+
desc "Profile" + (@name==:profile ? "" : " for #{@name}")
|
|
73
|
+
|
|
74
|
+
task @name do
|
|
75
|
+
create_output_directory
|
|
76
|
+
|
|
77
|
+
@ruby_opts.unshift( "-I#{lib_path}" )
|
|
78
|
+
@ruby_opts.unshift( "-w" ) if @warning
|
|
79
|
+
@ruby_opts.push("-S ruby-prof")
|
|
80
|
+
@ruby_opts.push("--printer #{@printer}")
|
|
81
|
+
@ruby_opts.push("--min_percent #{@min_percent}")
|
|
82
|
+
|
|
83
|
+
file_list.each do |file_path|
|
|
84
|
+
run_script(file_path)
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
self
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# Run script
|
|
91
|
+
def run_script(script_path)
|
|
92
|
+
run_code = ''
|
|
93
|
+
RakeFileUtils.verbose(@verbose) do
|
|
94
|
+
file_name = File.basename(script_path, File.extname(script_path))
|
|
95
|
+
case @printer
|
|
96
|
+
when :flat, :graph, :call_tree
|
|
97
|
+
file_name += ".txt"
|
|
98
|
+
when :graph_html
|
|
99
|
+
file_name += ".html"
|
|
100
|
+
else
|
|
101
|
+
file_name += ".txt"
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
output_file_path = File.join(output_directory, file_name)
|
|
105
|
+
|
|
106
|
+
command_line = @ruby_opts.join(" ") +
|
|
107
|
+
" --file=" + output_file_path +
|
|
108
|
+
" " + script_path
|
|
109
|
+
|
|
110
|
+
puts "ruby " + command_line
|
|
111
|
+
# We have to catch the exeption to continue on. However,
|
|
112
|
+
# the error message will have been output to STDERR
|
|
113
|
+
# already by the time we get here so we don't have to
|
|
114
|
+
# do that again
|
|
115
|
+
begin
|
|
116
|
+
ruby command_line
|
|
117
|
+
rescue => e
|
|
118
|
+
STDOUT << e << "\n"
|
|
119
|
+
STDOUT.flush
|
|
120
|
+
end
|
|
121
|
+
puts ""
|
|
122
|
+
puts ""
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
def output_directory
|
|
127
|
+
File.expand_path(@output_dir)
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
def create_output_directory
|
|
131
|
+
if not File.exist?(output_directory)
|
|
132
|
+
Dir.mkdir(output_directory)
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
def clean_output_directory
|
|
137
|
+
if File.exist?(output_directory)
|
|
138
|
+
files = Dir.glob(output_directory + '/*')
|
|
139
|
+
FileUtils.rm(files)
|
|
140
|
+
end
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
def option_list # :nodoc:
|
|
144
|
+
ENV['OPTIONS'] || @options.join(" ") || ""
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
module RubyProf
|
|
2
|
+
class Thread
|
|
3
|
+
# Returns the root methods (ie, methods that were not called by other methods) that were profiled while
|
|
4
|
+
# this thread was executing. Generally there is only one root method (multiple root methods can occur
|
|
5
|
+
# when Profile#pause is used). By starting with the root methods, you can descend down the profile
|
|
6
|
+
# call tree.
|
|
7
|
+
def root_methods
|
|
8
|
+
self.methods.select do |method_info|
|
|
9
|
+
method_info.root?
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
# Returns the total time this thread was executed.
|
|
14
|
+
def total_time
|
|
15
|
+
self.root_methods.inject(0) do |sum, method_info|
|
|
16
|
+
method_info.callers.each do |call_info|
|
|
17
|
+
sum += call_info.total_time
|
|
18
|
+
end
|
|
19
|
+
sum
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
# Returns the amount of time this thread waited while other thread executed.
|
|
24
|
+
def wait_time
|
|
25
|
+
# wait_time, like self:time, is always method local
|
|
26
|
+
# thus we need to sum over all methods and call infos
|
|
27
|
+
self.methods.inject(0) do |sum, method_info|
|
|
28
|
+
method_info.callers.each do |call_info|
|
|
29
|
+
sum += call_info.wait_time
|
|
30
|
+
end
|
|
31
|
+
sum
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
data/lib/unprof.rb
ADDED
data/ruby-prof.gemspec
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
4
|
+
require "ruby-prof/version"
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "ruby-prof"
|
|
8
|
+
|
|
9
|
+
spec.homepage = "https://github.com/ruby-prof/ruby-prof/"
|
|
10
|
+
spec.summary = "Fast Ruby profiler"
|
|
11
|
+
spec.description = <<-EOF
|
|
12
|
+
ruby-prof is a fast code profiler for Ruby. It is a C extension and
|
|
13
|
+
therefore is many times faster than the standard Ruby profiler. It
|
|
14
|
+
supports both flat and graph profiles. For each method, graph profiles
|
|
15
|
+
show how long the method ran, which methods called it and which
|
|
16
|
+
methods it called. RubyProf generate both text and html and can output
|
|
17
|
+
it to standard out or to a file.
|
|
18
|
+
EOF
|
|
19
|
+
spec.license = 'BSD-2-Clause'
|
|
20
|
+
spec.version = RubyProf::VERSION
|
|
21
|
+
|
|
22
|
+
spec.author = "Shugo Maeda, Charlie Savage, Roger Pack, Stefan Kaes"
|
|
23
|
+
spec.email = "shugo@ruby-lang.org, cfis@savagexi.com, rogerdpack@gmail.com, skaes@railsexpress.de"
|
|
24
|
+
spec.platform = Gem::Platform::RUBY
|
|
25
|
+
spec.require_path = "lib"
|
|
26
|
+
spec.bindir = "bin"
|
|
27
|
+
spec.executables = ["ruby-prof", "ruby-prof-check-trace"]
|
|
28
|
+
spec.extensions = ["ext/ruby_prof/extconf.rb"]
|
|
29
|
+
spec.files = Dir['CHANGES',
|
|
30
|
+
'LICENSE',
|
|
31
|
+
'Rakefile',
|
|
32
|
+
'README.rdoc',
|
|
33
|
+
'ruby-prof.gemspec',
|
|
34
|
+
'bin/ruby-prof',
|
|
35
|
+
'bin/ruby-prof-check-trace',
|
|
36
|
+
'doc/**/*',
|
|
37
|
+
'examples/*',
|
|
38
|
+
'ext/ruby_prof/extconf.rb',
|
|
39
|
+
'ext/ruby_prof/*.c',
|
|
40
|
+
'ext/ruby_prof/*.h',
|
|
41
|
+
'ext/ruby_prof/vc/*.sln',
|
|
42
|
+
'ext/ruby_prof/vc/*.vcxproj',
|
|
43
|
+
'lib/ruby-prof.rb',
|
|
44
|
+
'lib/unprof.rb',
|
|
45
|
+
'lib/ruby-prof/*.rb',
|
|
46
|
+
'lib/ruby-prof/assets/*',
|
|
47
|
+
'lib/ruby-prof/profile/*.rb',
|
|
48
|
+
'lib/ruby-prof/printers/*.rb',
|
|
49
|
+
'test/*.rb']
|
|
50
|
+
|
|
51
|
+
spec.test_files = Dir["test/test_*.rb"]
|
|
52
|
+
spec.required_ruby_version = '>= 2.4.0'
|
|
53
|
+
spec.date = Time.now.strftime('%Y-%m-%d')
|
|
54
|
+
spec.homepage = 'https://github.com/ruby-prof/ruby-prof'
|
|
55
|
+
spec.add_development_dependency('minitest')
|
|
56
|
+
spec.add_development_dependency('rake-compiler')
|
|
57
|
+
spec.add_development_dependency('rdoc')
|
|
58
|
+
end
|