Tagged Questions
4
votes
3answers
340 views
has_many :through multiple has_one relationships?
I'm writing a mentorship program for our church in rails (im still farily new to rails)..
And i need to model this..
contact
has_one :father, :class_name => "Contact"
has_one :mother, :class_name ...
3
votes
1answer
90 views
Ruby on Rails: Retrieving a friendship given two users
I have seen the railscast on self-referential relationships here: http://railscasts.com/episodes/163-self-referential-association
I have built upon this in that I've included a 'status' field on ...
3
votes
1answer
462 views
How do I implement a 'social' aspect with mongoid
I am attempting to create a friend network on a site I am making. I am using Mongoid. How do I instantiate friends?
I assume that Users needs to have a relational association with multiple other ...
2
votes
2answers
733 views
has_many through self referential association
I want to (as an example) create a has_many association to all posts by friends of a person, something like has_many :remote_posts to give me something like person > friends > person > ...
1
vote
3answers
134 views
Rails Self Referential has_many :through - I can't figure out what I'm doing wrong, but it isn't right :)
I'm trying to set up a self-referential relationship, as described in this great video - http://railscasts.com/episodes/163-self-referential-association - and it's mostly working, but not entirely ...
1
vote
1answer
81 views
Self-referential find in controller count relations
I'm having real trouble pulling out a set of records that are self-referentially related to a user in order to show these on a user's 'show' page.
Here's the idea:
Users (current_user) rate the ...
1
vote
2answers
103 views
Class method problem with bidirectional self-referential associations
I'm trying to create an app where users ('current_user') rate the compatibility between two other users ('user1' and 'user2'). They can rate compatibility either positively or negatively: rating two ...
1
vote
1answer
93 views
What's the best way to destroy both sides of a self-referential association?
In my project, I have a self-referential association.
I have a User model:
class User < ActiveRecord::Base
has_many :relationships, :dependent => :destroy
has_many :peers, :through => ...
1
vote
1answer
655 views
Mongoid self-referencial join
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 ...
1
vote
0answers
170 views
rails rendering actions twice for model with empty self-referential association
I am pretty baffled by this one. I doubt anyone can tell me right off the bat what the issue is, but any answers suggesting ways of debugging and investigating this would be much appreciated -- I've ...
1
vote
1answer
91 views
Validating a self-referential association doesn't link back to the original instance in rails
I have a many-to-many model, following the example in this great railscast
My model links authors to each other. I'd like to validate that an author cannot friend himself. I know I can handle this at ...
1
vote
1answer
515 views
Self-referential association in Rails 2.3
I have model called test, and test can have many tests, and should be able to have a reference to it's parent test if it exists. EG
test <-- parent doesn't exist
test
test
test
test
test
...
0
votes
0answers
112 views
Calling recursive method on a self-referential (hmt) relationship causes model to stop working
When calling successors_all inside a lambda block, the model stops working and I can't access successors anymore. On the contrary, if I call predecessors_all nothing stops working and the behavior is ...
0
votes
1answer
246 views
How to model family relationships in rails 3?
I'm working on a contact database in rails 3..
One thing thats really frustrating is how ugly the family relationship code is..
Is there a clean way of doing this in rails?
Basically all contacts ...
0
votes
1answer
275 views
Bidirectional self referential associations
Taking Ryan Bates' asciicast as an example:
http://asciicasts.com/episodes/163-self-referential-association
He ends with two associations of User
:friends
:inverse_friends
Given that a user would ...
0
votes
1answer
284 views
Model self referential collections in Rails
I have written an application for an online clothing store in Rails 2.3.5. I want to show related Products when a customer views the Product Detail page.
For example, if the customer views the ...