acts_as_ferret will_paginate
Update: This is not needed with recent versions of acts_as_ferret.
Here’s a little nugget to add to acts_as_ferret to make your searches paginate with will_paginate.
Updated from Behrang’s comment based on changes to will_paginate.
There was a slight challenge in that will_paginate expects that you do one query to get the count, create a new collection object based on that count, and then perform the actual search. But acts_as_ferret does it all in one method call, so I have to create a temporary collection object to get the offset, then do the search and create the collection object. It’s a little messier than it needs to be, but it works.