lib/active_support/core_ext/benchmark.rb



require 'benchmark'

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