Hi,
I've got 3 classes :
class Person < ActiveRecord:Base end
class Man < Person end
class Father < Man end
When I call Man.all, I expect to have men and fathers, but I don't. When I call Person.all, I have people, men and fathers...
Do I have to redefine the find method of the Father's class ??? Did I break some thing ? I'm pretty sure it worked before, but I really don't know what I could have done to break it.
I thought it could be an issue from Rails 2.1.2, but I got the same one with rails 2.1.1.
Please help !