D
Dmitry V. Sabanin
Hi!
I've run into problem aliasing a class method, i.e.
I have:
class Abc
self.get_abc arg
...
end
end
And later I need to this method, with saving of
original implementation.
Following code is not working:
alias rig_get_abc, :get_abc
I've run into problem aliasing a class method, i.e.
I have:
class Abc
self.get_abc arg
...
end
end
And later I need to this method, with saving of
original implementation.
Following code is not working:
alias rig_get_abc, :get_abc