Could you perhaps provide an example of code using .each that does the wrong thing in 1.8, but the right thing in 1.9?
a = 0 [1, 2, 3].each { |a| } a # => 3
Could you perhaps provide an example of code using .each that does the wrong thing in 1.8, but the right thing in 1.9?