class RubyProf::CallInfoPrinter

Prints out the call graph based on CallTree instances. This is mainly for debugging purposes as it provides access into into RubyProf’s internals.

To use the printer:

result = RubyProf.profile do
  [code to profile]
end

printer = RubyProf::CallInfoPrinter.new(result)
printer.print(STDOUT)

Constants

TIME_WIDTH