Skip to content

Instantly share code, notes, and snippets.

@thomasbiddle
Created August 2, 2013 19:35
Show Gist options
  • Save thomasbiddle/6142764 to your computer and use it in GitHub Desktop.
Save thomasbiddle/6142764 to your computer and use it in GitHub Desktop.
Retry an rescued block
def my_test
puts 'test1'
begin
puts 'test2'
raise Exception, 'Oh noes!'
rescue Exception
retry
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment