Module: EntityComponents::NoBrainer
- Extended by:
- ActiveSupport::Concern
- Includes:
- Hooks
- Defined in:
- lib/entity_components.rb
Instance Method Summary
collapse
Methods included from Hooks
#initialize_components, #serialize_components
Instance Method Details
#_create(*args) ⇒ Object
62
63
64
65
|
# File 'lib/entity_components.rb', line 62
def _create(*args)
serialize_components
super
end
|
#_update_only_changed_attrs(*args) ⇒ Object
57
58
59
60
|
# File 'lib/entity_components.rb', line 57
def _update_only_changed_attrs(*args)
serialize_components
super
end
|