Skip to content

Instantly share code, notes, and snippets.

@porras
Created July 21, 2009 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save porras/151354 to your computer and use it in GitHub Desktop.
Save porras/151354 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