rpanachi/core_ext

View on GitHub
lib/core_ext/benchmark.rb

Summary

Maintainability
A
0 mins
Test Coverage
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