module ActiveGraph::Shared::SerializedProperties::ClassMethods

Public Instance Methods

inherit_serialized_properties(other) click to toggle source
   # File lib/active_graph/shared/serialized_properties.rb
25 def inherit_serialized_properties(other)
26   other.serialized_properties = self.serialized_properties
27 end
inherited(other) click to toggle source
Calls superclass method
   # File lib/active_graph/shared/serialized_properties.rb
20 def inherited(other)
21   inherit_serialized_properties(other) if self.respond_to?(:serialized_properties)
22   super
23 end