success.rb works by using the block as is. self.instance_eval &block
I’m rewriting the block source code using ruby2ruby and then passing
that as a string to self.instance_eval. fail.rb contains the simple
failure case. The ary var is out of scope.
Is there a way to retain the
original scope of the block? I want to pass a string to instance_eval
and eval it within the scope of the block.