What's best here, Rails Association Scopes or Just SQL?
I'm not quite sure what to do here, here's the situation: Given these models... class Post < ActiveRecord::Base has_many :post_assets has_many :assets, :through => :post_assets acts_as_scopeable :assets, :scopes => [:featured] end class PostAssets < ActiveRecord::Base belongs_to :post belongs_to :asset # context is so we...