module ActiveSupport::MessagePack

Public Class Methods

dump(object) click to toggle source

Dumps an object. Raises ActiveSupport::MessagePack::UnserializableObjectError if the object type is not supported.

# File lib/active_support/message_pack.rb, line 20
    
load(dumped) click to toggle source

Loads an object dump created by ::dump.

# File lib/active_support/message_pack.rb, line 30
    
signature?(dumped) click to toggle source

Returns true if the given dump begins with an ActiveSupport::MessagePack signature.

# File lib/active_support/message_pack.rb, line 39