Automatically creating plural models in Rails
At times it's more readable to use the plural of a model instead of singular. For instance Products.for_indexing
instead of Product.for_indexing
. This can be accomplished through a simple initializer that creates the plural model automatically.
(315)