module EacRubyUtils::ActsAsAbstract::InstanceMethods
def method_missing(method_name, *arguments, &block)
def method_missing(method_name, *arguments, &block) raise_abstract_method(method_name) if abstract_method?(method_name) super end
def method_missing(method_name, *arguments, &block) raise_abstract_method(method_name) if abstract_method?(method_name) super end