I have an Account class that has_many stores. In the Store class, there is a routine that returns all the other stores for that account:
def other_stores
if account then
account.stores.find(:all,:conditions=>"id != "+id.to_s)
else
[]
end
end
When I include :other_stores in my as_json routine and then reference it, I pin a cpu and hang. I am assuming it is infinite recursion in the other_stores. Any ideas? Any way to stop the recursion?
Ruby 1.9.2-p136, Rails 3.0.3