Skip to content

Instantly share code, notes, and snippets.

@mostlyobvious
Created January 3, 2012 02:08
Show Gist options
  • Save mostlyobvious/1553096 to your computer and use it in GitHub Desktop.
Save mostlyobvious/1553096 to your computer and use it in GitHub Desktop.
begin
$raise = true
raise RuntimeError if $raise
puts "raise: #{$raise}"
rescue RuntimeError
$raise = false
puts "in rescue, raise: #{$raise}"
retry
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment