Module: Tutelege

Defined in:
lib/tutelege.rb,
lib/tutelege/version.rb

Constant Summary collapse

VERSION =
"0.0.1"

Instance Method Summary collapse

Instance Method Details

#tut_tut(array) ⇒ Object



5
6
7
8
9
10
11
# 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