8/30/06, foamdino <[EMAIL PROTECTED]> wrote: > > This is a bug in activesupport/lib/active_support/inflections.rb > > Somehow the singular form is included as a plural form, immediately > after the plural, so what happens in the Inflector.pluralize method > call is > queries.pluralize -> query -> queries > > Anyway it's a trivial fix:
The inflector is basically frozen, prior to 1.0 we'd add lots of new rules to fix bugs, and just end up enraging people who looked at the old output and named their tables accordingly. You can add those exceptions yourself in environment.rb. -- Cheers Koz --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" 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/rubyonrails-core -~----------~----~----~----~------~----~------~--~---
