Skip to content

Instantly share code, notes, and snippets.

@naush
Created March 13, 2012 20:17
Show Gist options
  • Save naush/2031290 to your computer and use it in GitHub Desktop.
Save naush/2031290 to your computer and use it in GitHub Desktop.
(60 * 60).seconds # => 3600 seconds
(60 * 60).seconds.parts # => [[:seconds, 3600]]
(60 * 60).seconds.parts.size # => 1
([1.second] * 60 * 60).sum # => 3600 seconds
([1.second] * 60 * 60).sum.parts.size # => 3600
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment