Hello,
I have a question regarding some ActiveRecord based models that I dynamically create in my app.
For my file based models, when I look at the reflections hash, everything looks good. eg.) SomeModel.reflections produces all of the reflections associated with the model.
Now with my non-file based models (ones created dynamically in memory), the reflections hash is empty. Methods for associations are created correctly though. eg.) DynamicModel.reflections produces {}
What would be going on behind the scenes that I'm may not be fully aware of that would be cuasing this issue? My thoughts are leading me to think it's some sort of cacheing issue, but I'm not 100% sure.
Thanks in advance, Andrew