How to sort objects in a many-to-many relationship in ruby on rails?
- by Kenji Kina
I've been trying to deal with this problem for a couple of hours now and haven't been able to come up with a clean solution. It seems I'm not too good with rails...
Anyway, I have the following:
In code:
class Article < ActiveRecord::Base
has_many :line_aspects, :dependent => :destroy
has_many :aspects, :through => :line_aspects
…