# File lib/couchrest/model/casted_hash.rb, line 32
    def merge!(other_hash)
      if use_dirty? && other_hash && other_hash.kind_of?(Hash)
        other_hash.keys.each do |key|
          if self[key] != other_hash[key] || !include?(key)
            couchrest_attribute_will_change!(key)
          end
        end
      end
      super(other_hash)
    end