Module: Itiel::Transform::InputOutputBehavior

Defined in:
lib/itiel/transform/input_output_behavior.rb

Overview

This module defines the behavior for input and output on all our transformations.

Whenever a transformation receives input, it stores the result of transform! on the output

All the classes in tiel::Transformation should implement ransform!

Defined Under Namespace

Modules: InstanceMethods

Class Method Summary collapse

Class Method Details

.included(receiver) ⇒ Object



39
40
41
# File 'lib/itiel/transform/input_output_behavior.rb', line 39

def self.included(receiver)
  receiver.send :include, InstanceMethods
end