How can I make a helper that will tell me how many weeks ago (rounded down) with rails? It could be based of the time_ago_in_words helper however I’d want it to return: “last week” then afterwards just two weeks ago, three weeks ago, etc…
How can I make a helper that will tell me how many weeks ago
Share
Try this:
This function will behave the same as
time_ago_in_words. When thefrom_timeis between 1 – 3 week ago, this will printlast week,two weeks ago,three weeks agootherwise it will print the usual.