Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found this blog post on alias vs. alias_method. As shown in the example given in that blog post, I simply want to alias a method to another within the same class. Which should I use? I always see alias used, but someone told me alias_method is better.

share|improve this question
4  
Doesn't that post answer your question? – marcog Jan 21 '11 at 19:55
@marcog: I've read it through, and I'm not convinced. Defining aliases inside methods, that's not something one should do often. – Boris Stitnicky Nov 3 '12 at 19:19

2 Answers

up vote 81 down vote accepted

alias_method can be redefined if need be. (it's defined in the Module class.)

alias's behavior changes depending on its scope and can be quite unpredictable at times.

Verdict: Use alias_method - it gives you a ton more flexibility.

Usage:

def foo
  "foo"
end

alias_method :baz, :foo
share|improve this answer
5  
What do you mean by unpredictable. Naïvely, one would say that the option that is less flexible will be more predictable. Also, can you provide any practical example of benefitting from redefining alias_method? – Boris Stitnicky Nov 3 '12 at 19:17
2  
1  
example use case: alias :new_method_name :old_method_name OR alias_method :new_method_name, :old_method_name – boulder_ruby Dec 11 '12 at 0:28
alias_method(new_name, old_name) → self (From the docs) – Allen Dec 20 '12 at 0:58

A point in favor of alias instead of alias_method is that its semantic is recognized by rdoc, leading to neat cross references in the generated documentation, while rdoc completely ignore alias_method.

share|improve this answer
15  
Maybe RDoc should start treating alias_method the same as alias. We should tell them about it ;) – Jeznet Sep 2 '11 at 9:52
1  
Totally agree. Yard handles this pretty well if I remember correctly... – Nikos D Apr 7 '12 at 8:21
1  
One more reason to use Yardoc instead of RDoc. – iain Feb 21 at 5:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.