If a class has been previously defined how can I tell it to inherit from a class Parent
For instance:
class Parent
..
end
class Klass
..
end
Now I want it to inherit from Parent
I cant re-open the class and set it because I will get a class mismatch error
class Klass < Parent
..
end
Specifically I am trying to find out how to set the class inheritance on a class im creating through Object.const_set
klass = Object.const_set('Klass', Class.new)
How can I tell Klass to inherit from class Parent?