I am using Ernie Miller's Metasearch in a rails 3 app and have run into a problem.
In my Model
class Prospect < ActiveRecord::Base
has_many :steps
In my controller
@search=Prospect.search(params[:search])
In my view (search form)
<%= f.date_select :steps_updated_at_greater_than%>
This works such that I get all the Prospects where steps have been updated since date_select. My problem is that if there has been multiple updated steps, I get duplicates in @search, which I do not want when I go to format my search results in a view.
My question is what is the best way to remove the duplicates from @search? Or prevent duplicates from being added to @search in the first place?