method

dump

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: ColumnSerializer
dump(object) public

No documentation

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

Hide source
# File activerecord/lib/active_record/coders/column_serializer.rb, line 22
      def dump(object)
        return if object.nil?

        assert_valid_value(object, action: "dump")
        coder.dump(object)
      end
Register or log in to add new notes.