यदि आप एक सरणी पास करना चाहते हैं तो लिखना बेहतर होगा
@applicants = Applicant
.where("applicants.first_name LIKE ?", "%#{people}%")
.where(status: ["new", "in-review"])
या स्क्वील का इस्तेमाल करें रत्न।
@applicants = Applicant.where{ (status.in(["new", "in-review"]) & (first_name =~ "%#{people}%") }