manual_inverse_association.rb 447 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
module ManualInverseAssociation
  extend ActiveSupport::Concern

  module ClassMethods
    def manual_inverse_association(association, inverse)
      define_method(association) do |*args|
        super(*args).tap do |value|
          next unless value

          child_association = value.association(inverse)
          child_association.set_inverse_instance(self)
          child_association.target = self
        end
      end
    end
  end
end