module VG::SO::ServiceObjectModuleInheritance::ClassMethods

Public Instance Methods

included(base) click to toggle source
Calls superclass method
# 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