File: control

package info (click to toggle)
ruby-prof 0.6.0-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 412 kB
  • ctags: 343
  • sloc: ruby: 1,669; ansic: 1,138; makefile: 29
file content (25 lines) | stat: -rw-r--r-- 1,091 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Source: ruby-prof
Section: devel
Priority: optional
Maintainer: Arnaud Cornet <acornet@debian.org>
Standards-Version: 3.7.3
Build-Depends: debhelper (>= 7), quilt, ruby1.8-dev, rake

Package: ruby-prof
Architecture: any
Depends: ruby (>= 1.8), rake, ${shlibs:Depends}, ${misc:Depends}
Description: A fast code profiler for Ruby
 ruby-prof is runs a ruby program and keeps track of the amount of time spent
 in each method. At the end of execution it displays collected information.
 Its features include:
   * Speed - it is a C extension and therefore many times faster than 
     the standard Ruby profiler.
   * Flat Profiles - similar to the reports generated by the standard
     Ruby profiler.
   * Graph profiles - similar to GProf, these show how long a method
     runs, which methods call it and which methods it calls.
   * Threads - supports profiling multiple threads simultaneously.
   * Recursive calls - supports profiling recursive method calls.
   * Reports - can generate both text and cross-referenced html reports.
   * Output - can output to standard out or to a file.