vote up 2 vote down star

I have a model named "clothing" which I want to be the singlular (one piece of clothing). By default, rails says the plural is clothings. Right or wrong, I think it will be more readable if the plural is "clothes".

How do I override the plural naming convention? Can I do it right in the model so I don't have to do it over and over? How will this change how routes are handled (I am using restful architecture)?

Thanks.

flag

2  
how about changing your model to garment and garments? – Rich Seller Jul 26 at 17:15

2 Answers

vote up 4 vote down check

For rails 2.3.2 and maybe 2+, you need to do it a little different:

ActiveSupport::Inflector.inflections do |inflect|
    inflect.plural /^(ox)$/i, '\1\2en'
    inflect.singular /^(ox)en/i, '\1'

    inflect.irregular 'octopus', 'octopi'

    inflect.uncountable "equipment"
end
link|flag
vote up 8 vote down

I'm no RoR expert, but did find a possible approach. From the referenced site you can add inflection rules, e.g.

# Add new inflection rules using the following format 
Inflector.inflections do |inflect|
  inflect.irregular 'clothing', 'clothes'
end

You will find these in your environment.rb file inside the config folder

link|flag
Actually, your custom inflections should reside in config/initializers/inflections.rb – BigCanOfTuna Jul 26 at 22:58

Your Answer

Get an OpenID
or

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