Method: ActiveSupport::MessagePack::Serializer#dump
- Defined in:
- lib/active_support/message_pack/serializer.rb
#dump(object) ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/active_support/message_pack/serializer.rb', line 11 def dump(object) .packer do |packer| packer.write(SIGNATURE_INT) packer.write(object) packer.full_pack end end |