What is the proper way in ruby to call a method from within itself to rerun In the sample below when @dest_reenter is equal to yes I would want the b_stage method to execute again
def b_stage
if @dest_reenter == 'yes'
@dest_reenter = nil
b_stage
end
end