# File lib/audited/audit.rb, line 41
      def reconstruct_attributes(audits)
        attributes = {}
        result = audits.collect do |audit|
          attributes.merge!(audit.new_attributes).merge!(:version => audit.version)
          yield attributes if block_given?
        end
        block_given? ? result : attributes
      end