Tagged Questions
0
votes
1answer
369 views
warning when using a named_scope as part of an anonymous scope
I have the following named scope:
named_scope :find_all_that_match_tag, lambda { |tags| {
:select => "articles.id, tags.name",
:joins => :tags,
:conditions ...