Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created March 5, 2009 12:41
Show Gist options
  • Select an option

  • Save ukstudio/74336 to your computer and use it in GitHub Desktop.

Select an option

Save ukstudio/74336 to your computer and use it in GitHub Desktop.
# coding: utf-8
def profile(msg, &block)
start_time = Time.now
yield
duration = Time.now - start_time
puts msg << ": " << duration.to_s << "秒"
end
profile "100万数える" do
10000.times do |i|
#
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment