Displaying 1 result from an estimated 1 matches for "_produces".
Did you mean:
produces
2006 Mar 12
1
alias_method interferes ApplicationHelper
...to retain access to methods that are overridden.
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)
_produces:_
Exiting with code 99
--
sig "kind regards" :name => " Arie Kusuma Atmaja ", :callme => " Arie ",
:ym => " riyari3 ", :email => " ariekusumaatmaja@gmail.com ".chop!,
:dotmac => " ariekusumaatmaja ", :blog =>...