Hi,
I am using facebooker in one of my applications. I want to add some application specific methods to various classes in it? e.g.
In facebooker/lib/facebooker/models/user.rb
module Facebooker
class User
# I want to add my methods here. for e.g my_method
end
end
I can not directly put my_method
in the plugin itself since I also want to access my models from there. Not defining the methods in plugin code itself will also be helpful when I upgrade.