Skip to content

Instantly share code, notes, and snippets.

@threedaymonk
Created October 8, 2015 09:43
Show Gist options
  • Save threedaymonk/281a4a79197adbf4a4b9 to your computer and use it in GitHub Desktop.
Save threedaymonk/281a4a79197adbf4a4b9 to your computer and use it in GitHub Desktop.
Ruby benchmarking example
require "benchmark"
Benchmark.benchmark do |b|
b.report("Some job"){ do_some_job }
b.report("Another job"){ do_another_job }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment