Module: VG::SO::ServiceObjectModuleInheritance::ClassMethods

Defined in:
lib/vg/s_o/service_object_module_inheritance.rb

Instance Method Summary collapse

Instance Method Details

#included(base) ⇒ Object



8
9
10
11
12
13
14
# File 'lib/vg/s_o/service_object_module_inheritance.rb', line 8

def included(base)
  # puts "-- #{self.name}#included call (including into #{base})"
  InjectRegistrationMethods.call(base)
  base.register_service_objects(registered_service_objects)
  
  super(base)
end