I just installed acts_as_taggable_on plugin and I'm trying to do
@products = Product.find(:all, :include => [:points, :tags], :conditions => '...', :tags => 'tag1, tag2')
As you can see I would like to use find() method with 2 other models (Product,Point,Tag). I would like to use all 3 models in a :condition => {} attribute.
Is it posible. What should I do?