Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.