Module Association::Kernel
In: lib/more/facets/association.rb

Object extensions.

Methods

>>   associations  

Public Instance methods

Define an association with self.

[Source]

# File lib/more/facets/association.rb, line 147
    def >>(to)
      REFERENCE[self] << to
      Association.new(self, to)
    end

[Source]

# File lib/more/facets/association.rb, line 152
    def associations
      REFERENCE[self]
    end

[Validate]