module ActiveJob::Arguments
def serialize(arguments)
serialized element by element. All other types are serialized using
serialized without mutation are returned as-is. Arrays/Hashes are
Serializes a set of arguments. Intrinsic types that can safely be
def serialize(arguments) arguments.map { |argument| serialize_argument(argument) } end