Method: ActiveRecord::MessagePack::Encoder#build_entry
- Defined in:
- activerecord/lib/active_record/message_pack.rb
#build_entry(record) ⇒ Object
73 74 75 76 77 78 79 |
# 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 |