jemnotesversion 2 / featuring this entry or see all/search

Mar 27
A good article here about the difference between alias and alias_method in ruby. It suggests:
alias_method :new_name, :old_name
in preference to
alias new_name old_name
Not sure I agree which is better, but at least this makes the differences clear.