Hi there,

I'm pondering whether to start a module that does code generation for
maintaining consistent associations.  Something along the lines:

class Foo
end

class Bar
end

Association.1toN "googles", Foo, Bar

f = Foo.new
b = Bar.new
f.addGoogles( b )
=> b.getGoogles() == f

Does anybody think this is a good idea?  Is there something already?
(Didn't find anything on RAA)

Regards

    robert