Re: [Rails-core] reset association cache for polymorphism

2015-09-20 Thread Matt Jones
On Sep 19, 2015, at 12:03 PM, Oto Iashvili wrote: > Hi, > > I have a product class with category and a polymorphic attributes > details_info, that depending on category go to one or another table to get > the detail > > > Class Product > category > details_info > > end > > Class DetailsI

[Rails-core] reset association cache for polymorphism

2015-09-19 Thread Oto Iashvili
Hi, I have a product class with category and a polymorphic attributes details_info, that depending on category go to one or another table to get the detail Class Product category details_info end Class DetailsInfo ... end Class Pencil include DetailsInfo type color end Class Notebook