What's the most popular tagging plugin/gem these days? Is it
acts_as_taggable_on_steroids? Or is something else better?
Dunno. I recently (3 months ago) had to pick and went with acts-as-
taggable-on. Seems to work just fine. Lets you have different "sets"
of tags per model which I don't use, but could be useful.
Setting/Accessing tags is easy... just set "tag_list" in your form as
a text field (assuming 'tag' is the name of your set).
Thanks for the suggestions guys. We already have some tagging in place,
using machine tags to delineate different kinds of tagging, eg
"note:name=Eb", so i think we would stick with that system. Maybe
that's how acts_as_taggable_on does it under the hood? Anyway i'll look
it that.
Thanks for the suggestions guys. We already have some tagging in place,
using machine tags to delineate different kinds of tagging, eg
"note:name=Eb", so i think we would stick with that system. Maybe
that's how acts_as_taggable_on does it under the hood? Anyway i'll look
it that.
It doesn't. Here's the migrations... It uses the 'context' field.
create_table :tags do |t|
t.column :name, :string
end
# You should make sure that the column created is
# long enough to store the required class names.
t.column :taggable_type, :string, :limit => 32
t.column :context, :string, :limit => 32