method

build_entry

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: Encoder
build_entry(record) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/message_pack.rb, line 73
      def build_entry(record)
        [
          ActiveSupport::MessagePack::Extensions.dump_class(record.class),
          record.attributes_for_database,
          record.new_record?
        ]
      end
Register or log in to add new notes.