Skip to content

Instantly share code, notes, and snippets.

@adelcambre
Created November 4, 2008 18:15
Show Gist options
  • Select an option

  • Save adelcambre/22178 to your computer and use it in GitHub Desktop.

Select an option

Save adelcambre/22178 to your computer and use it in GitHub Desktop.
loop
begin
code_that_might_raise
rescue
count ||= 0; count +=1
break if count > 10
end
end
begin
code_that_might_raise
rescue
count ||= 0; count +=1
retry if count < 10
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment