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

                   
                  

                             
     
   
require 'benchmark'

class << Benchmark
  def ms
    1000 * realtime { yield }
  end
end