reload! not working

Not sure what happened but all of a sudden reload! stopped loading updated model classes in irb. Anyone seen this?

This is only happening for one model only!

Here is the model.

If I exit the console then start it again the model updates load just fine.

Nevermind turns out my model classname was same as the class name of a plugin. Wonder why reload! always returned true, never complained or gave a clue

Nevermind turns out my model classname was same as the class name of a plugin. Wonder why reload! always returned true, never complained or gave a clue

At the point that the plugin was loaded, that class was probably marked as non reloadable, as plugins usually aren't. Sounds like the class declaration in your app then just added to that non reloadable class rather than creating a new one.

Fred