I have a module called Setup and want a method alias.
Here's how it looks, but how it doesn't work:
module Setup def Setup::option_set?(option) #... end alias :option_set? :get_information end
I assume this is related to Setup:: -prefix. What to do?
source share