class RubyProf::Thread

Public Instance Methods

top_methods() click to toggle source
# File lib/ruby-prof/thread.rb, line 3
def top_methods
  self.methods.select do |method_info|
    method_info.call_infos.detect do |call_info|
      call_info.parent.nil?
    end
  end
end
total_time() click to toggle source
# File lib/ruby-prof/thread.rb, line 11
def total_time
  self.top_methods.inject(0) do |sum, method_info|
    method_info.call_infos.each do |call_info|
      if call_info.parent.nil?
        sum += call_info.total_time
      end
    end
    sum
  end
end