Skip to content

Instantly share code, notes, and snippets.

@esetomo
Created July 18, 2013 11:42
Show Gist options
  • Save esetomo/6028679 to your computer and use it in GitHub Desktop.
Save esetomo/6028679 to your computer and use it in GitHub Desktop.
ActiveSupportさんよく分からない
1.9.3p429 :009 > 1.minute
=> 60 seconds
1.9.3p429 :010 > 1.minute.class
=> Fixnum
1.9.3p429 :011 > 1.minute.object_id
=> 121
1.9.3p429 :012 > 60
=> 60
1.9.3p429 :013 > 60.object_id
=> 121
1.9.3p429 :016 > 1.minute.equal?(60)
=> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment