module Dallal::AbstractInterface::ClassMethods

Public Instance Methods

needs_implementation(name, *args) click to toggle source
# File lib/dallal/abstract_interface.rb, line 21
def needs_implementation(name, *args)
  self.class_eval do
    define_method(name) do |*args|
      raise NotImplemented
    end
  end
end