Re: Ferret 0.10.2 - Index#search_each() and :num_docs

Doh, replace:

idx.search_each(query, :doc_num => idx.size) { |doc, score| docs <<
idx[doc] }

With:

idx.search_each(query, :num_docs => idx.size) { |doc, score| docs <<
idx[doc] }

Problem still remains though.