Module: ContextR::EventMachine::ContextRListener

Defined in:
lib/contextr/event_machine.rb

Instance Method Summary collapse

Instance Method Details

#include(modul) ⇒ Object



65
66
67
68
# File 'lib/contextr/event_machine.rb', line 65

def include(modul)
  modul.instance_method.each { |m| method_added(m) }
  super
end

#method_added(name) ⇒ Object



61
62
63
64
# File 'lib/contextr/event_machine.rb', line 61

def method_added(name)
  ContextR::EventMachine::on_method_added(self, name)
  super
end