I'm using JRuby 1.6.0.RC1. I would like to use the java.util.Iterators on some Java libraries more idiomatically from Ruby, by providing a facade implementing a Ruby each method.
My first attempt was basically like this:
def each_property( myJavaObj )
i = myJavaObj.myIterator
while i.hasNext
yield i.next
end
end
However, when I call each_property {|p| puts "#{p}"} I get the error: LocalJumpError: yield called out of block.
Can anyone either suggest what I'm doing wrong, or point to a better pattern for invoking Java iterators from Ruby?