A ideia de combinar todos os valores em
IN
cláusula você tem que fazer isso:tag_ids = [1, 2, 3, 4]
Post.joins(:tags).where('tags.id IN (?)', tags_ids).group("posts.id")
.having("COUNT(posts.id) >= ?", tag_ids.length)
Espero que isso lhe ajude.