I’d like to create a model Test with variables a, b, and c that responds to functions p, q, and r. I’d like to create another model Supertest with variables a, b, c, d, and e that responds to functions p, q, r, s, and t.
Can I create one model Test and give it a type (regular or super) or must I create two types?
Sounds like you just want to have one class inherit from another.
Here’s an example from rubylearning.com