method

update

update(*)
private

No documentation available.

# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 70
      def update(*)
        if partial_updates?
          # Serialized attributes should always be written in case they've been
          # changed in place.
          super(changed | (attributes.keys & self.class.serialized_attributes.keys))
        else
          super
        end
      end