Which taggable library do people use?

I’d like to add taggability to a model in the site I’m working on, and I wanted to get an idea of what people are using. I keep seeing that acts_as_taggable is deprecated, so I tried the acts_as_taggable_on_steroids. I also tried be_taggable.

In any case, I figured I’d see what people use.

thanks. -corey

For my current Rails 2.x project I've ended up going with the the tagging capabilities inherent in Evan Weaver's excellent has_many_polymorphs plugin for ActiveRecord.

Very happy so far. See :

http://blog.evanweaver.com/files/doc/fauna/has_many_polymorphs/files/README.html

...for more detail.

Cheers,

Martin

thanks! I'll check that out.