mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 08:16:21 +00:00
29 lines
615 B
Ruby
29 lines
615 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationRecord < ActiveRecord::Base
|
|
self.abstract_class = true
|
|
|
|
# Obtener una lista filtrada de atributos al momento de serializar
|
|
#
|
|
# @return [String]
|
|
def to_yaml(options = {})
|
|
pruned_attributes.to_yaml(options)
|
|
end
|
|
|
|
# Devuelve todos los atributos menos los filtrados
|
|
#
|
|
# @return [Hash]
|
|
def pruned_attributes
|
|
self.class.inspection_filter.filter(serializable_hash)
|
|
end
|
|
|
|
# @param coder [Psych::Coder]
|
|
# @return nil
|
|
def encode_with(coder)
|
|
pruned_attributes.each_pair do |attr, value|
|
|
coder[attr] = value
|
|
end
|
|
|
|
nil
|
|
end
|
|
end
|