I have a big array and I need to know whether all its elements are divisible by 2.
I'm doing it this way, but it's sort of ugly:
_true = true
arr.each { |e| (e % 2).zero? || _true = false }
if _true == true
# ...
end
How to do this without extra loops/assignments?

% 4when you want to see if they are divisible by two? – sawa Oct 30 '12 at 14:21&:even?stuff looks neat but yet too hacky for me :) thanks – James Evans Oct 30 '12 at 14:50