Class: Reactive::OutputHandler::Base::ProxyModule

Inherits:
Module
  • Object
show all
Defined in:
lib/reactive-core/output_handler.rb

Instance Method Summary collapse

Constructor Details

#initialize(receiver) ⇒ ProxyModule

Returns a new instance of ProxyModule.



103
104
105
# File 'lib/reactive-core/output_handler.rb', line 103

def initialize(receiver)
  @receiver = receiver
end

Instance Method Details

#include(*args) ⇒ Object



107
108
109
110
# File 'lib/reactive-core/output_handler.rb', line 107

def include(*args)
  super(*args)
  @receiver.extend(*args)
end