ActsAsTaggableOn is a Ruby gem for Rails that handles associating records with arbitrary tags. It handles complex tag relationships, searching and allows you to categorize your tags (for example, as skills, movies, or whatever you want).
6
votes
3answers
2k views
Installing and using acts-as-taggable-on
This is going to be a really dumb question, I just know it, but I'm going to ask anyways because it's driving me crazy.
How do I get acts-as-taggable-on to work?
I installed it as a gem with gem ...
5
votes
1answer
644 views
Tagging with autocomplete in Rails
My (long, I apologize) question is a follow-on to: How to add tagging with autocomplete to an existing model in Rails?
I am using acts-as-taggable-on and rails3-jquery-autocomplete, and trying to set ...
4
votes
1answer
395 views
Acts-as-taggable-on - Trouble putting all of the pieces together
I'm having a heck of a time getting acts-as-taggable-on working. I am new to Ruby/RoR, and I feel that sometimes these plugins (although great) lack the very basic implementation instructions for ...
4
votes
3answers
418 views
Update owner tags via form
I would like to uniquely use owner tags in my app. My problem is that when I create / update a post via a form I only have f.text_field :tag_list which only updates the tags for the post but has no ...
3
votes
1answer
137 views
Rails tagging gem that supports tagging a model with other models?
Most Rails tagging gems support tagging an object with arbitrary strings. (In addition to this) I'd like to tag an object with other objects.
Imagine I am building a Q&A site for Dog Lovers: I ...
3
votes
5answers
677 views
How to use jquery-Tokeninput and Acts-as-taggable-on
This is how you use autocomplete with jQuery Tokeninput and ActsAsTaggableOn.
In my situation i am using a nested form but it shouldnt matter. Everything below is code that works.
Code
Product ...
3
votes
1answer
155 views
Acts_as_taggable_on migration fail
I'm using Rails 3.0.6/Ruby 1.8.7 and I've been trying to get the acts_as_taggable_on (2.0.6) gem to work but it seems to fail on the default migration.
Log:
== ActsAsTaggableOnMigration: migrating ...
3
votes
1answer
149 views
How can I input tags through a form (using acts_as_taggable_on) and Rails 3
Here is my form:
1 <%= semantic_form_for @vendor do |f| %>
2 <% f.inputs do %>
3 <%= f.input :name %>
4 <%= f.input :tag_list %>
5 <% ...
3
votes
1answer
632 views
Acts-as-taggable-on find all tags by context
So after searching for a tagging gem for my rails app I found the amazing acts-as-taggable gem. Installing it and playing around I discovered that it keeps all the Tags inside a tag db which just ...
3
votes
1answer
555 views
Rails 3 - routing error when using acts_as_taggable_on v.2.0.3
I'm using acts_as_taggable_on v.2.0.3 in Rails 3 to add tags to posts. I add a tag cloud as described here: https://github.com/mbleigh/acts-as-taggable-on, but I'm encountered an error:
...
3
votes
2answers
406 views
weird behavior with acts_as_taggable_on
Edit
The instructions on Github instruct you to use the gemcutter source for the gem. Currently, this installs version 2.0.5 which includes the bug I've detailed below.
@Vlad Zloteanu demonstrates ...
2
votes
3answers
53 views
In ruby on rails, how to group records by tag when records have multiple tags
I'm using Rails 3.0 and the acts_as_taggable_on gem. I have a Candy model and candies can have multiple tags for flavors. Let's say
Candy1.tags #['apple', 'orange']
Candy2.tags #['orange', 'banana']
...
2
votes
1answer
137 views
Rails filtering with acts_as_taggable gem
I am working the acts-as-taggable-on gem and have a question about how to filter down search results based on tags users select. Here's an abridged look at my controller:
class PhotosController < ...
2
votes
1answer
76 views
Showing only the most popular tags in the acts_as_taggable_on tag cloud
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 the order ...
2
votes
1answer
288 views
Acts_as_taggable_on fails in rails 3.1
I am using acts_as_taggable_on on my rails 3.1 app. This is my model
class User < ActiveRecord::Base
acts_as_taggable_on :skills
end
I get this error the moment I try anything with the user ...
2
votes
0answers
46 views
How to declare tags aliases with acts_as_taggable_on in Rails?
The acts_as_taggable_on implementation worked quite well, but I also need to declare tags aliases.
I've found a plugin that claimed to do so, acts_as_taggable_with_aliases, but last commit was in ...
2
votes
1answer
100 views
acts_as_taggable_on and checkbox tags
I'm using RoR 3.0.8 and the gem acts_as_taggable_on. I want to make it so that a post can have any of the following tags (politics, sports, social, science). I want them to choose the tags when they ...
2
votes
0answers
144 views
Retrieving all owned_tags for a taggable in acts_as_taggable on
I have two models: User and Post
User acts_as_tagger and Post acts_as_taggable
I use the following method to create tagging by a user:
@user.tag(@post, :with =>"tag1, tag2, tag3", :on => ...
2
votes
1answer
181 views
with acts_as_taggable_on, how can I have a maximum number of tags?
with acts_as_taggable_on, how can I have a maximum number of tags?
2
votes
2answers
448 views
Combining meta_search with acts_as_taggable_on
I've run into a small problem with some search-functionality for a Rails 3 website I'm developing. I have a simple Post model that looks like this:
class Post < ActiveRecord::Base
...
2
votes
2answers
294 views
search models tagged_with OR title like (with acts_as_taggable_on)
I'm doing a search on a model using a scope. This is being accessed by a search form with the search parameter q. Currently I have the code below which works fine for searches on tags associated ...
2
votes
4answers
257 views
Rails link_to with acts_as_taggable_on_steroids
I am using acts_as_taggable_on steroids and I am having problem with this piece of code that generates a link to a tag:
<%= link_to tag, tag_path(:id => tag.name) %>
when I access the URL:
...
2
votes
2answers
140 views
acts_as_taggable_on with permissions required to create new tags
How can I prevent users from adding new tags which don't already exist in the tags db?
I want them to be able to add any tags that already exist to another model which they can fully edit, but not ...
2
votes
1answer
109 views
acts_as_taggable_on with a collection
I have a list of products, which belong to a category. Each product has tags. See following example (psuedocode)
Category = transport
Products = car, train, bus
car has tags = small, fast
train has ...
2
votes
2answers
227 views
Changing the default delimiter with acts-as-taggable-on
The default delimiter in the acts-as-taggable-on gem is a comma. I'd like to change this to a space throughout my Rails 3 application. For example, tag_list should be assigned like this:
...
2
votes
1answer
220 views
Acts_As_Taggable_On tag cloud for multiple models
I have two models (Image and Video) that both are setup to Act_As_Taggable.
I'd like to use the tags for these two models to generate one overall tag cloud (Images and Videos are being used as Assets ...
2
votes
2answers
168 views
acts_taggable_on not recording tagger_id or tagger_type
I have setup the acts-as-taggable-on gem on Rails 3.0.3 and Ruby 1.9.2. The tagging is working as expected but the taggings table is not capturing the tagger_id.
Here is what I have setup:
class ...
2
votes
2answers
322 views
How to cache tags with acts_as_taggable_on?
I have model with tag context:
class Product < ActiveRecord::Base
acts_as_taggable_on :categories
end
I'm trying to initialize tags caching:
class AddCachedCategoryListToProducts < ...
2
votes
1answer
195 views
Show latest posts all from unique tags (Rails 3.0, Acts_As_Taggable_On)
tags_controller.rb:
def index
@title = "tags"
@posts = Post.tag_counts.collect do |tag|
Post.tagged_with(tag).first(:order => "updated_at DESC")
end
@posts.uniq!
end
...
2
votes
1answer
269 views
Acts As Taggable On: translate tags
I'm working with RoR and I was wondering how can I translate Acts As Taggable On tags without having to manually insert it every time I use a tag again?
Example:
I have a Post (title and body in ...
1
vote
1answer
108 views
Rails autocomplete with acts-as-taggable-on issue
I am a rails newbie. I am trying to implement acts-as-taggable-on with autocomplete. The problem I am facing is if I have multiple tags for a user, autocomplete suggests the entire tag_list instead of ...
1
vote
1answer
178 views
Using jquery tokeninput and acts_as_taggable_on
I've implemented the framework outlined in this post: How to use jquery-Tokeninput and Acts-as-taggable-on with some difficulty. This is working insofar as prepopulating with the appropriate theme and ...
1
vote
0answers
44 views
Seeding tags for Suggestion List
I am using Rails(v3) gem acts-as-taggable-on for tagging some user data - interests & locations.
I would like to seed the "locations" tag and present a suggestion list to user for selecting the ...
1
vote
2answers
120 views
Rails, acts_as_taggable_on: how to get all aricles without tags
I'm using acts-as-taggable-on. I have Article model:
class Article < ActiveRecord::Base
acts_as_taggable_on :tags
end
I know how to find all articles with tag "tag". According to README the ...
1
vote
2answers
75 views
Rails 3 tag_list.each
I have a problem trying to make a list from a acts_as_taggable_on tag_list
I have tag list array, and I want to list it so im trying this:
<%= proyects.tag_list.each do |tagsx| %>
* <%= ...
1
vote
1answer
137 views
Rails3 acts_as_taggable with a form
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.
class Photo < ActiveRecord::Base
...
1
vote
1answer
104 views
undefined local variable or method `acts_as_taggable' in gem
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
class BlogPost < ActiveRecord::Base
acts_as_taggable
....
end
However, ...
1
vote
1answer
54 views
Converting from MySQL to Postgres and getting a 'column “Product” does not exist' error
I'm using acts_as_taggable_on in rails and I'm trying to get a listing of all Products that have yet to be tagged. In MySQL the following query worked:
def self.untagged
available.find(:all,
...
1
vote
2answers
89 views
How can I filter my query to show instances where current user has no tags?
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:
Controller
This is my controller code and ...
1
vote
1answer
91 views
Can I validate the presence of acts_as_taggable_on tags?
Yea I have a model with acts_as_taggable_on :styles, my styles taggings are passed in from an array of check boxes:
<% styles.each do |style|%>
<%= check_box("tattoo", "style_list", ...
1
vote
2answers
211 views
Return all tags based on context - ActsAsTaggableOn
I'm using the rails gem acts-as-taggable on, and am tagging posts on two contexts: tags and topics.
To return a hash of all the topics tags used so far for posts I can use the code:
...
1
vote
1answer
107 views
How to db:seed my acts-as-taggable-on tags?
I am trying to create a numerous amount of tags inside of my database, does anyone know how to do this with the gem acts-as-taggable-on?
Products table:
create_table :products do |t|
t.string ...
1
vote
1answer
81 views
How do I use tag names that contain commas with acts-as-taggable-on?
I'm using acts-as-taggable-on in my application and I want to be able to use tag names that contain commas such as "Ben, Jerry." However, when I put something like '"Ben, Jerry", Bob, Bill' in the tag ...
1
vote
1answer
61 views
Validation of Tag length
For acts-as-taggable-on, how do you make Tags be a certain amount of characters? I want users to only be able to have a maximum of 50 characters when they are creating tags.
Thank you.
1
vote
1answer
256 views
acts-as-taggable-on tagged_with or_where?
I'm trying to query an OR WHERE into an acts-as-taggable-on query, like so...
Business.tagged_with(params[:query], :any => true)
But I'd also like to perform at the same time an or_where like ...
1
vote
1answer
89 views
Rails acts_as_taggable_on Tag Link Filtering
I have a list of 'notes', and each note has some tags via acts_as_taggable_on. It's a great plugin, and the tags are working wonderfully.
What would be the best way to filter this list of notes by ...
1
vote
1answer
95 views
acts-as-taggable-on won't show tag name
i don't know if this happens with you guys but when the column 'tagger_id' and tagger_type are both filled out meaning all the columns are filled out in the taggings table, when you do this:
...
1
vote
2answers
68 views
find entries with no tags using acts-as-taggable-on
There's an answer to my question - how to find entries with no tags using acts-as-taggable-on ?
but is unfortunately highly inefficient. It makes one hit to the db during the loop
I have 10,000 ...
1
vote
1answer
112 views
Updating an array of tag's timestamps
Will this method update every tag's updated_at timestamp from Acts_As_Taggable_On's tag_list array?
def update_tag_timestamp
self.tag_list.each do |tag|
tag.update_attribute(:updated_at, ...
1
vote
1answer
246 views
Searching with acts_as_taggable_on
I'm trying to search through a model for all records with a certain tag.
Sample output we are trying to search:
ruby-1.9.2-p0 :1 > Question.last.tags
=> [#<ActsAsTaggableOn::Tag id: 2, ...