Skip to content

Instantly share code, notes, and snippets.

@johana-star
Created June 18, 2013 21:18
Show Gist options
  • Save johana-star/5809493 to your computer and use it in GitHub Desktop.
Save johana-star/5809493 to your computer and use it in GitHub Desktop.
class Timer
def self.time_code(number = 1)
start_time = Time.now
number.times { yield }
end_time = Time.now
(end_time - start_time) / number.to_f
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment