class Object

Private Instance Methods

implementation_missing!() click to toggle source
# File lib/abstract_method.rb, line 6
def implementation_missing!
  calling_method_name = caller[1]
  calling_method_name = $1 if calling_method_name =~ /.*in `(.*)'$/

  raise ImplementationMissing, "Implementation missing: #{self.class.name}##{calling_method_name}"
end