Module: Multidispatch::ClassMethods

Defined in:
lib/multidispatch.rb

Constant Summary collapse

@@interceptor =
Interceptor.new(Store.new)

Instance Method Summary collapse

Instance Method Details

#method_added(method_name) ⇒ Object



14
15
16
# File 'lib/multidispatch.rb', line 14

def method_added(method_name)
  @@interceptor.intercept(instance_method(method_name))
end