Writing a search for my rails app with the tire gem, I try to take into account the created_at for an object.
I have this @profiles collection that filters out the records of the last 7 days but how to convert this to Tire?
#@profiles = Profile.where("created_at >= ?", 7.days.ago).where("user_id != ?", current_user.id).order("id").order("id").page(params[:page]).per_page(20).where('status IS NOT NULL')
@profiles = Profile.search(params)