module Cattri::DeferredAttributes::Hook
def extended(target)
-
(void)
-
Parameters:
-
target
(Module
) -- the extending class or module
def extended(target) apply_deferred_attributes(target) if respond_to?(:apply_deferred_attributes) # steep:ignore end
def included(target)
-
(void)
-
Parameters:
-
target
(Module
) -- the including class or module
def included(target) apply_deferred_attributes(target) if respond_to?(:apply_deferred_attributes) # steep:ignore end