1 2 3 4 5 6 7
module Arel class Where < Compound def eval relation.eval.select { |row| predicate.eval(row) } end end end