Skip to content

Instantly share code, notes, and snippets.

@spraints
Created April 12, 2012 21:44
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 spraints/2371211 to your computer and use it in GitHub Desktop.
Save spraints/2371211 to your computer and use it in GitHub Desktop.
module Kernel
alias_method :ಠ_ಠ, :raise
end
begin
raise 'boom'
rescue Object => boom
puts "raise: #{boom}"
end
begin
ಠ_ಠ 'boom'
rescue Object => boom
puts "ಠ_ಠ: #{boom}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment