Singularize Pluralize "tax"

I have a table: municipal_taxes and a model: MunicipalTax which belongs_to :company Company has_many :municipal_taxes

I get this error: NameError: uninitialized constant Company::MunicipalTaxis         from /opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.1/lib/ active_support/dependencies.rb:477:in `const_missing'

When I open up the console I see that:

"tax".pluralize # => "taxes" "taxes".singularize # => "taxis" "taxis".pluralize # => "taxes" "taxis".singularize # => "taxi"

I corrected this with the Inflector in environment.rb but why might this be happening?

The inflector isn't perfect; a few attempts have been made to add a few things, but the typical response is deal with it in environment.rb. It's getting "taxes" => "taxis" from the regex that says "axes" => "axis."

You did the right thing (in the Rails core team's opinion) by addressing it in environment.rb. :slight_smile:

--Jeremy

As a workaround you can always use the :class_name and :foreign_key options also to override the default naming.

Michael