Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@huned
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huned/a838b57308cab7758a58 to your computer and use it in GitHub Desktop.
Save huned/a838b57308cab7758a58 to your computer and use it in GitHub Desktop.
def rescue_retry(tries = 2, options = {}, &block)
raise ArgumentError, 'gimme a block' unless block_given?
begin
tries -= 1
yield
rescue => e
if tries > 0
sleep(options[:sleep]) if options[:sleep]
retry
else
raise e
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment