#-- # :credit: Sean O'Halpin #++ module Enumerable def where(&block) self.select{|x| x.instance_eval(&block) } end end