method
stored_attributes
rails latest stable - Class:
ActiveRecord::Store::ClassMethods
stored_attributes()public
No documentation available.
# File activerecord/lib/active_record/store.rb, line 199
def stored_attributes
parent = superclass.respond_to?(:stored_attributes) ? superclass.stored_attributes : {}
if local_stored_attributes
parent.merge!(local_stored_attributes) { |k, a, b| a | b }
end
parent
end