Flowdock
method

serialize_hash

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: Arguments

Method not available on this version

This method is only available on newer versions. The first available version of the method is shown here.

serialize_hash(argument) private

No documentation

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

Hide source
# File activejob/lib/active_job/arguments.rb, line 100
      def serialize_hash(argument)
        argument.each_with_object({}) do |(key, value), hash|
          hash[serialize_hash_key(key)] = serialize_argument(value)
        end
      end
Register or log in to add new notes.