I am currently working on a small Rails 3 app to help track secret-santas at work. I am all but done and completely stumped trying to sort out this last problem.
I have a Participant mongoid document, which requires a self-join to represent who has to buy gifts for whom. No matter what I do, I don't seem to be able to get this to work. My code is as follows:
# app/models/participant.rb
class Participant
include Mongoid::Document
include Mongoid::Timestamps
field :first_name, :type => String
field :last_name, :type => String
field :email, :type => String
# --snip--
referenced_in :secret_santa, :class_name => "Participant", :inverse_of => :receiver
references_one :receiver, :class_name => "Participant", :inverse_of => :secret_santa
Using the rails console, if I set either property it is never reflected on the other side of the join, and sometimes lost all together after saving and reloading. I'm certain that the answer is glaring me in the face - but after hours of staring, I still can't see it.