Displaying 1 result from an estimated 1 matches for "fb_multi_friend_selector".
2010 Jan 16
0
Extending instance-methods of an Module for Plugin-Development
...What I wanna do?
I wan''t to extend facebooker with tracking-functionality for our company.
For this, i want to write an second plugin which is loaded after it
(beginning with a letter higher then F).
In this plugin i wan''t to alias the methods from facebooker like
alias_method :fb_multi_friend_selector_without_awesome,
:fb_multi_friend_selector
And write a new method which do the tracking and call the old
Why can''t i do this with:
module Facebooker
module Rails
module Helpers
alias :fb_multi_friend_selector_without_awesome
:fb_multi_friend_selector
end
end
end
T...