Skip to content

Instantly share code, notes, and snippets.

@stevez
Created September 24, 2012 03:06
Show Gist options
  • Save stevez/3773970 to your computer and use it in GitHub Desktop.
Save stevez/3773970 to your computer and use it in GitHub Desktop.
alias_method
module Mod
alias_method :orig_exit, :exit
def exit(code=0)
puts "Exiting with code #{code}"
orig_exit(code)
end
end
include Mod
exit(99)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment