aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/benchmark.rb
blob: eb25b2bc4448f711a6ad3428605da467017b0832 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                   
                  






                                       

                             
     
   
require 'benchmark'

class << Benchmark
  # Benchmark realtime in milliseconds.
  #
  #   Benchmark.realtime { User.all }
  #   # => 8.0e-05
  #
  #   Benchmark.ms { User.all }
  #   # => 0.074
  def ms
    1000 * realtime { yield }
  end
end