I\'ve just started working with the acts_as_taggable gem. Really liking it so far, but I am a bit unclear about how to use this gem with a form.
Acts-as-taggable works great and everything but I was wondering if there was a way to restrict the tag cloud to only the most popular tags? Right not it looks like its ordering my cloud by th开发者_如
We\'re using the (brilliant) acts_as_taggable_on Rails gem, allowing users to add tags to content they write (e.g. blog comment).开发者_开发百科We auto-suggest on as they type, but would also like to
I\'m working on converting a plugin to a gem. In one of the models I\'m using acts_as_taggable_on, and it looks like this
I am using acts_as_taggable_on on my rails 3.1 app. This is my model class User < ActiveRecord::Base
Using Rails 3.1 and gem \'acts-as-taggable-on\' version 2.1.1. I have a class: class Meal < ActiveRecord::Base
I\'m using acts_as_taggable_on in rails and I\'m trying to get a listing of all Products that have yet开发者_JS百科 to be tagged.In MySQL the following query worked:
Given a user model and a brand model, and acts_as_taggable_on I have 2 users that have tagged a brand with 2 tags each. Then in the console:
I\'m trying to show only brand instances which the current user has not tagged, even if other users have tagged the same brand already. Something like:
I\'m playing with ActsAsTaggableOn in a small project to see what are the possibilities of this gem. So I have Products and products can have tags.