I wish to put two aliases for one original method, but i don't see the ability of alias_method
to do multiple aliases at once, rather one by one.
So is there a possibility to change from this:
alias_method :aliased_first_method, :first_method
alias_method :aliased_first_method?, :first_method
to something like this:
alias_method [:aliased_first_method, :aliased_first_method?], :first_method
I'm not interested in creating custom methods.