module Interaktor::Organizer

Public Class Methods

included(base) click to toggle source

When the Interaktor::Organizer module is included in a class, add the relevant class methods and hooks to that class.

@param base [Class] the class which is including the Interaktor::Organizer

module
# File lib/interaktor/organizer.rb, line 7
def self.included(base)
  base.class_eval do
    include Interaktor

    extend ClassMethods
    include InstanceMethods
  end
end