Class: ActsAsTaggableOn::Taggable::TaggedWithQuery::AnyTagsQuery

Inherits:
QueryBase
  • Object
show all
Defined in:
lib/acts_as_taggable_on/taggable/tagged_with_query/any_tags_query.rb

Instance Method Summary collapse

Methods inherited from QueryBase

#initialize

Constructor Details

This class inherits a constructor from ActsAsTaggableOn::Taggable::TaggedWithQuery::QueryBase

Instance Method Details

#buildObject



3
4
5
6
7
8
# File 'lib/acts_as_taggable_on/taggable/tagged_with_query/any_tags_query.rb', line 3

def build
  taggable_model.select(all_fields)
                .where(model_has_at_least_one_tag)
                .order(Arel.sql(order_conditions))
                .readonly(false)
end