I'm writing a Rails application, but can't seem to find how to do relative time, i.e. if given a certain Time class, it can calculate "30 seconds ago" or "2 days ago" or if it's longer than a month "9/1/2008", etc.
|
2
|
|
|
|
|
|
Sounds like you're looking for the time_ago_in_words method (or distance_of_time_in_words), from ActiveSupport. Call it like this:
Check the docs for it here. |
||
|
|
|
|
I've written this, but have to check the existing methods mentioned to see if they are better.
|
||||
|
|
|
What about
Or something else you were shooting for? |
||
|
|
|
|
You can use the arithmetic operators to do relative time.
Will give you 2 days ago. |
||
|
|
|
Something like this would work.
|
||||||
|
|
|
<shameless self promotion>There's a plugin for this. Check out the files on GitHub.</shameless self promotion> |
||
|
|
|
|
i think of this as fuzzy timestamps, or "web 2.0" intervals. Probably all the major ajax libs/frameworks/plugins can do this, also: dojo: http://www.oreillynet.com/onlamp/blog/2008/08/dojo_goodness_part_10_its_a_do_1.html jquery: http://timeago.yarp.com/ |
||
|
|
