class Benchmark::IPS::Job
def run
def run @stdout.start_warming if @stdout @iterations.times do run_warmup end @stdout.start_running if @stdout held = nil @iterations.times do |n| held = run_benchmark end if held puts puts 'Pausing here -- run Ruby again to measure the next benchmark...' end end