Displaying 1 result from an estimated 1 matches for "inplaceeditassoci".
2006 Mar 25
3
Rails Plugins: Why to register your own functionality with send()?
Hi there,
I have seen in the file column plugin (
http://www.kanthak.net/opensource/file_column/) from Sebastian Kanthak or
David''s acts_as_taggable plugin that to register my functionality I need to
do something like this:
ApplicationHelper.send(:include, InPlaceEditAssociations)
I am wondering why not:
(a)
module ApplicationHelper
include InPlaceEditAssociatons
end
or:
(b)
ApplicationHelper.include(InPlaceEditAssociations)
As I now know a way that works this is not crucial to me, but I am still
curious.
Cheers,
Mariano
-------------- next part --------------...