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! ...
1
vote
3answers
362 views

pluralize and singularize for spanish language

sorry for my english... I have a rails application developed to spain, therefore, all content is in spanish, so, I have a search box to search in a mysql database, all rows are in spanish, I'd like ...
0
votes
1answer
46 views

rails singularize to a / an

Is there a method that works similiar to singularize to prepend a or an according to the word? like f(apple) # => an apple f(carpet) #=> a carpet thanks