Opa,
The problem is as follows: I have a Model Call Idea and I am trying to add a new nested in it to IdeaCategory which is an associative with Idea. Then we have:
Idea:
has_many: idea_categories, inverse_of:: idea, dependent:: destroy
accepts_nested_attributes_for: idea_categories,: reject_if = > : all_blank,: allow_destroy = > true
IdeaCategory:
belongs_to: idea
belongs_to: category
Category:
has_many: idea_categories, inverse_of:: category, dependent:: destroy
And when I enter this form I get the error:
Andinmyinflectionisthispartoftheideas:
inflect.plural"ideia_comentario", "ideia_comentarios"
inflect.singular "ideia_comentarios", "ideia_comentario"
inflect.plural "ideia_arquivo", "ideia_arquivos"
inflect.singular "ideia_arquivos", "ideia_arquivo"
inflect.plural "ideia_categoria", "ideia_categorias"
inflect.singular "ideia_categorias", "ideia_categoria"
inflect.plural "categoria", "categorias"
inflect.singular "categorias", "categoria"
Where are you pulling this IdeiaCategorium?