Class Liftoff::ManyToMany
In: vendor/plugins/liftoff/lib/associations.rb
Parent: Association

Methods

new  

Public Class methods

[Source]

    # File vendor/plugins/liftoff/lib/associations.rb, line 28
28:   def initialize(from, to)
29:     super(from, to)
30:     @from_mapping = "has_and_belongs_to_many :" + to.pluralize
31:     @to_mapping = "has_and_belongs_to_many :" + from.pluralize
32:   end

[Validate]