module Tutelege

Constants

VERSION

Public Instance Methods

tut_tut(array) click to toggle source
# File lib/tutelege.rb, line 5
def tut_tut(array)
  array.each do |method|
    define_method(method) do
      raise "Children of #{self.class} Must Always Implement #{method} "
    end
  end
end