Heritage icon indicating copy to clipboard operation
Heritage copied to clipboard

A gem for using Multiple Table Inheritance with rails 3

Results 6 Heritage issues
Sort by recently updated
recently updated
newest added

Hi, and thank for your gem. I've 2 classes : Media (predecessor) and Image(heir). I'm trying to destroy a media's instance (destroy) through the Image.destroy method. Actually, the "predecessor" class...

I made some changes based on the requirements of a current project: 1) That the acts_as_heir_of may be passed a symbol that needs to be converted to camel case (e.g....

Hi! I've added a :class => "::Namespace::ClassName" parameter to acts_as_heir_of to be able to inherit classes from other namespace. This also fixes a bug when the predecessor class name was...

I'm able to create child objects without satisfying the validation on the parent object. When I try to create the parent object directly without the required field, I get the...

Hi, Thanks for the great gem. I couldn't figure out how to implement associations when the type of the heir is unknown. Example: I want to do something like: ```...