Skip to content

Instantly share code, notes, and snippets.

@phlipper
Created June 21, 2011 04:08
Show Gist options
  • Save phlipper/1037219 to your computer and use it in GitHub Desktop.
Save phlipper/1037219 to your computer and use it in GitHub Desktop.
# syntax sugar for http://bit.ly/jMMVOF
class Time
def to_ms
(self.to_f * 1000.0).to_i
end
end
@phlipper
Copy link
Author

start_time = Time.now
sleep(3)
end_time = Time.now
elapsed_time = end_time.to_ms - start_time.to_ms   # => 3004

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment