I use acts_as_taggable_on in my current Rails project. On one overview page i am displaying an index of objects with their associated tags. I use the following code
acts_as_taggable_on
Use this:
Post.includes(:tags).all
and then:
post.tags.collect { |t| t.name }