func1=->(x){x+y}classAdefy10endendA.new.instance_exec(1,&func1)# => 11func2=->(x){x*2}f=func1>>func2A.new.instance_exec(1,&f)# => undefined local variable or method `y' for main:Object (NameError)
I think this is expected. You get the same error if you compose the proc manually, and the proc composition operators should reflect the same behavior as manual composition:
func1=->(x){x+y}classAdefy10endendA.new.instance_exec(1,&func1)# => 11func2=->(x){x*2}f=->(x){func2.(func1.(x))}A.new.instance_exec(1,&f)# => undefined local variable or method `y' for main:Object (NameError)