head     1.1;
branch   1.1.1;
access   ;
symbols  Initial:1.1.1.1 ditto:1.1.1;
locks    ; strict;
comment  @# @;


1.1
date     2005.05.01.10.53.29;  author ditto;  state Exp;
branches 1.1.1.1;
next     ;

1.1.1.1
date     2005.05.01.10.53.29;  author ditto;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@#!c:/ruby/bin/ruby

if ARGV.empty?
  puts "Usage: profiler 'Person.expensive_method(10)' [times]"
  exit
end

require File.dirname(__FILE__) + '/../config/environment'
require "profiler"

# Don't include compilation in the profile
eval(ARGV.first)

Profiler__::start_profile
(ARGV[1] || 1).to_i.times { eval(ARGV.first) }
Profiler__::stop_profile
Profiler__::print_profile($stdout)@


1.1.1.1
log
@Initial import
@
text
@@
