How would I pass multiple options for the :without option in Sphinx with Rails? I have looked at http://freelancing-god.github.com/ts/en/searching.html but have not come up with anything.
User.search params[:search],
:without => {:id => current_user.id && current_user.other_users.collect {
|other_user| other_user.id} # user cannot be self & user cannot already be a contact
} # This is where I'm having the problem!
Help appreciated! I feel like the answer is simple and I'm just missing it... maybe I'm getting tired or something =/