Class: Benchmark
- Defined in:
- lib/gems/activesupport-2.2.2/lib/active_support/core_ext/benchmark.rb
Class Method Summary collapse
Class Method Details
.realtime ⇒ Object
6 7 8 9 10 11 |
# File 'lib/gems/activesupport-2.2.2/lib/active_support/core_ext/benchmark.rb', line 6 def realtime r0 = Time.now yield r1 = Time.now r1.to_f - r0.to_f end |