Skip to content

Instantly share code, notes, and snippets.

@pacoguzman
Forked from porras/gist:151354
Created July 21, 2009 20:30
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save pacoguzman/151564 to your computer and use it in GitHub Desktop.
# paste into .irbrc
require 'benchmark'
def time(&block)
result = nil
Benchmark.bm do |bm|
bm.report { result = yield }
end
result
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment