Skip to content

Instantly share code, notes, and snippets.

@alloy-d
Created May 31, 2013 16:24
Show Gist options
  • Save alloy-d/5686139 to your computer and use it in GitHub Desktop.
Save alloy-d/5686139 to your computer and use it in GitHub Desktop.
module Kernel
alias_method :_orig_raise, :raise
def raise(*args)
begin
_orig_raise(*args)
rescue Exception => e
Bugsnag.notify(e)
_orig_raise(e)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment