Tagged Questions
2
votes
3answers
2k views
Test if a word is singular or plural in Ruby on Rails
Quick question.
How can I test a word to see if it is singular or plural?
I'd really like:
test_singularity('word') # => true
test_singularity('words') # => false
I bet rails is capable!
...