D
David E.
So I'd like to inherit a ruby class as such:
class ClassOne < ClassOneA
def blah1
end
def blah2
end
end
The caveat is that ClassOneA is NOT in the same file location as
ClassOne. How do I allow for ClassOne to "look for" ClassOneA.
Would i have to "require" it and then inherit it?
Thanks in advance!
class ClassOne < ClassOneA
def blah1
end
def blah2
end
end
The caveat is that ClassOneA is NOT in the same file location as
ClassOne. How do I allow for ClassOne to "look for" ClassOneA.
Would i have to "require" it and then inherit it?
Thanks in advance!