method

set_serialized_attributes

set_serialized_attributes()
private

No documentation available.

# File activerecord/lib/active_record/base.rb, line 1934
      def set_serialized_attributes
        sattrs = self.class.serialized_attributes

        sattrs.each do |key, coder|
          @attributes[key] = coder.load @attributes[key] if @attributes.key?(key)
        end
      end