> Seems that any hobo_model_resource name that terminates in 's' causes > this problem. > > script/generate hobo_model_resource BuenosAires name:string ---------
That'll be a problem with the ActiveSupport inflector: >> "city".pluralize => "cities" >> "Buenos Aires".pluralize => "Buenos Aires" It doesn't know how to pluralize "Buenos Aires". Come to think of it, nor do I : ) You can teach the inflector about new words, but it seems like a very strange name for a model..? Tom -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
