Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I generally do something like this, but if feels nasty and not very dry:

-if minutes == 1
  added #{minutes} minute ago
-else
  added #{minutes} minutes ago
share|improve this question

2 Answers

up vote 1 down vote accepted

See http://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html#method-i-pluralize

"added #{ pluralize(minutes, "minute") } ago"

There is an optional third argument that you can add if the plural version is non-standard and rails can't figure it out. For example (from the docs):

pluralize(3, 'person', 'users')
share|improve this answer
<%= pluralize(minutes, "minute") %> if you're in a view.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.