class AbstractEmulate
def requiredMethod
#abort() or throw Exception here
end
def requiredMethodTwo
abort("Please define #{__method__.to_s}")
end
end
Может кто знает? И действительно ли хорош такой способ эмулировать абстрактный класс?