Oooookay...this might be a bit over the top, but it might hint at another problem more relevant.
I general you use Mixins to share common functionality in Ruby/Ruby on Rails. In several of my recent projects I choose abstract superclasses, instead. I.e. class Parent < ActiveRecord::Base self.abstract_class = true [shared functionality] end class ChildA < Parent [special stuff A] end class ChildB < Parent Regards Michael -- You received this message because you are subscribed to the Google Groups "ActiveScaffold : Ruby on Rails plugin" group. To view this discussion on the web visit https://groups.google.com/d/msg/activescaffold/-/zd7PGVbC2cIJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/activescaffold?hl=en.
