ActsAsTaggableOn is a Ruby on Rails gem for handling generic tagging.

learn more… | top users | synonyms

0
votes
0answers
6 views

jQuery tokenInput and acts_as_taggable_on

Ok, I think I'm going to go crazy.. I've been playing around with jQuery TokenInput and acts_as_taggable_on for hours, and I can't get any part of the token input to work (no auto suggestion, and it ...
0
votes
0answers
13 views

How to get the each tag name number when using acts-as-taggable-on

ruby: 2.0.0p0, rails: 3.2.13 , acts-as-taggable-on 2.4.1 Hi, everyone. I want to get each tags name and there number when using the acts-as-taggable-on gem. 2.0.0p0 :049 > Question.tag_counts ...
1
vote
1answer
29 views

Using acts-as-taggable-on how do I find the top, say 10, tags in my app?

Basically, I want to sort all the tags by the number of taggings they have. I am trying to create navigation using the tags. So I want to display just the top 5, 10, 15, X tags sorted by the number ...
0
votes
0answers
17 views

acts-as-taggable-on gem in rails

I know ActsAsTaggableOn.remove_unused_tags = true is for the lasted version. In 2.2 I used ActsAsTaggableOn::Tag.remove_unused = true. How about ActsAsTaggableOn.force_lowercase = true? What is the ...
0
votes
1answer
29 views

simple_form (rails) displays extra characters (— “0”)

I used simple_form and devise (RoR gems) to make a New User and Edit User form. I added a checkbox feature so that users can select what payment methods they accept. However, after filling up and ...
0
votes
0answers
27 views

How can I make an edit-in-place thing with jQuery Tokeninput

I have a discussion thread site where I have tags added to the posts using an edit form. Without the Tokeninput plugin, each tag is a div containing the tag name with CSS styling applied, all inside a ...
1
vote
1answer
43 views

How to use acts-as-taggable-on with has_scope?

I'm building an API that returns a list of posts (localhost:3000/api/v1/posts): { "tags": [ { "id": 1, "name": "Tag 1" }, { "id": 2, "name": "Tag 2" }, … ...
2
votes
0answers
136 views

Submit Select2 Form in Rails via Javascript with Acts-as-taggable-on

I have a tags list I'm showing on a page when the user visiting the page is the owner. I would like this individual to be able to adjust the tags to a photo directly on the page. As tags are added, it ...
0
votes
0answers
19 views

How to return unique results from an acts_as_taggable relation in a nested loop

I'm trying to return a unique list of video industry names, taken from an acts_as_taggable relation. So far I've tried the following: <% @videos.each do |c| %> <% ...
1
vote
1answer
66 views

Why am I getting this simple error when using `acts_as_taggable_on`?

I wanted to set up ActsAsTaggableOn.strict_case_match = true According to http://5minutenpause.com/blog/2012/11/20/careful-where-you-get-your-gems-from/, it seems I have to download the gem from ...
1
vote
1answer
40 views

Why does it automatically create more than 2 tags when using 'acts_as_taggable_on'?

I do have User, Tag, and Tagging model. Tag and Tagging models were automatically created by the gem called acts_as_taggable_on (https://github.com/mbleigh/acts-as-taggable-on) Tag model is the ...
0
votes
0answers
26 views

acts-as-taggable-on tag cloud with a previous constraint

Say I have this in my controller: unless params[:query].blank? @search = @user.things.search do # @user previously found fulltext params[:query] end @things = @search.results else ...
2
votes
1answer
104 views

How to build tag hierarchy on rails using acts-as-taggable-on

I have a rails app that includes tagging for blog posts using the gem acts-as-taggable-on. My idea is to extend the tagging mechanism of this gem using a moderate-link approach where I can choose to ...
3
votes
0answers
132 views

How to integrate acts-as-taggable-on to RailsAdmin?

Is someone integrate acts-as-taggable-on to RailsAdmin? I'm trying rails_admin_tag_list but it's not working for me. My environments: **Gems included by the bundle: * actionmailer (3.2.13) * ...
2
votes
1answer
39 views

Can ActsAsTaggableOn allow multiple owners per tag?

I'm debating on whether I have to implement my own tagging system or use the great ActsAsTaggableOn gem. I'm unclear on whether ActsAsTaggableOn will allow more than one owners of the same tag. I ...
0
votes
1answer
66 views

acts-as-taggable-on fails in finding items belonging to tags which contains spaces and non English characters such as åäö

I'm using the following code to retrieve all products tagged with a specific tag. tag = The tag for the products which you would like to find Product.tagged_with(tag, :on => "product_tags").each ...
0
votes
0answers
82 views

optimize the query using acts-as-taggable-on rubygem

I am using acts-as-taggable-on gem on my project. However, it takes about 80s to load all the tags. I have added eager loading in the run_controller, but it is not working. Here is the piece of ...
0
votes
1answer
41 views

How can I format tags using acts-as-taggable-on gem before saving my user model?

How can I format tags using acts-as-taggable-on before saving the model? I am using the following gem in my ruby on rails project gem 'acts-as-taggable-on', '~> 2.3.1' I have added interests ...
1
vote
1answer
53 views

acts-as-taggable-on tag owner bug

I have code such as: Parent Class ->acts_as tagger Child Class ->acts_as_taggable If I print 'child.tag_list' I get the correct result e.g. 'A'. If I print 'parent.owned_tags' I get: ...
0
votes
1answer
98 views

Manage list of tags for acts-as-taggable-on?

I'm currently using acts-as-taggable-on in a project. I can offer users the choice of only tagging new objects with existing tags by using Model.tag_count. But the client wants to be able to manage ...
0
votes
1answer
20 views

Show the times of a tag being tagged to a specific object using acts-as-taggable-on in Rails

Sorry for such a long topic, that what I can only express with these words. For example: @article=Article.new and users could tag @article differently, with their own tag( like good) Then, how can ...
1
vote
1answer
37 views

acts-as-taggable-on context names plural or singular?

Is it correct to assume that act-as-taggable-on context names must be plural? "skills" vs "skill"? The documentation is not explicit about the naming conventions. class User < ActiveRecord::Base ...
0
votes
1answer
42 views

Having issue renaming tags with ActsAsTaggableOn

Here's my method: def rename old_tag = params[:old_tag] new_tag = params[:new_tag] if old_tag != new_tag # find any articles that use the old tag Article.tagged_with(old_tag).each do ...
0
votes
0answers
22 views

ActsAsTaggableOn, asking a model if it has a specific tag

I see in the ActsAsTaggableOn's doc a lot of examples of querying by tags, but all of them are related to Class like: MyModelClass.tagged_with("awesome") # => Collection I'm looking for querying ...
0
votes
1answer
22 views

How can I sort by “updated_date desc” with the gem 'acts_as_taggable_on_steroids'?

I'm using This fetches 10 tags of the most pupular tags @tags = Post.tag_counts_on(:tags, :limit => 10, :order => "count desc") This fetches 10 tags of the oldest tags @tags = ...
0
votes
0answers
72 views

acts as taggable on count across multiple models

I am trying to find the total number of tag counts across multiple models. In one model, it works great: Post.tag_counts_on(:hashtags).order('count desc') However, I had another model as well ...
0
votes
2answers
49 views

Preset Tags acts_as_taggable_on

Does acts_as_taggable_on have any settings to prevent the creation of new tags? I couldn't find anything on the wiki or on SO. I only want admins to be able to create new tags. I realize I could ...
0
votes
0answers
32 views

How can write model to replace particular character of tag list before create or update?

I'm using rails3, devise, and acts_as_taggable_on. I use tags for User model and Community model. For user model, I figured out how to write in model to replace. Just like this alias_method ...
1
vote
2answers
96 views

How can I set up 'maximum length validation for each tag' with acts_as_taggable_on?

I just did set up validations for User model. The codes in my User model are just like this. If I'd like to add maximum length validation for each tag, what should I add to this? I also would like to ...
0
votes
0answers
62 views

How do I use relations on acts_as_taggable?

My Product model looks like this: attr_accessible :name, :description, :price, :vendor_id, :image, :tag_list acts_as_taggable acts_as_taggable_on :categories belongs_to :vendor My Vendor model ...
1
vote
1answer
88 views

devise form_for, how to use array of check_box_tag

I use acts-as-taggable-on to save multiple user interests. I try to show a fixed list of checkboxes on the signup form. The code below works. = form_for(resource, :as => resource_name, :url => ...
0
votes
1answer
62 views

Rails acts as taggle on filter by multiple tags

I have a model, Tasks, that can be tagged with the acts as taggable on gem. The route: get 'mainpage/:tag', to: 'mainpage#index', as: :tag Right now, when you click on a tag, it brings you to ...
0
votes
0answers
42 views

Acts as taggable on tag include text

I am looking for a method which can give me the tagged_with results of part of the tag text . Photo.tagged_with("My Computer") #=> works as photos have "my computer" tag ...
0
votes
1answer
66 views

Rake Tagging from CSV task to much for SQLite?

I have a rake task that foreach through a CSV file of IDs. I then query the database to see if that id exists in my database. if it exists i use act_as_taggable to add a tag. the script runs fine ...
0
votes
0answers
70 views

polymorphic - get correct params in show template

I use acts-as-taggable-on. Table structure is this: CREATE TABLE `taggings` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tag_id` int(11) DEFAULT NULL, `taggable_id` int(11) DEFAULT NULL, ...
0
votes
1answer
44 views

conditions case not working correctly

i use acts-as-taggable-on for tagging. apartments_controller def index if params[:tag] @apartments = Apartment.tagged_with(params[:tag]) else @apartments = Apartment.all end end ...
0
votes
0answers
29 views

OR SQL Clause in Rails 3 with acts_as_taggable_on

I am writing a rails app with ActiveRecord and using acts_as_taggable_on A user has items and those items might be in a given location. I want a scope that gives me all items in a location AND items ...
0
votes
1answer
184 views

Rails associations and Thinking Sphinx Indexing to refactor search method in controller

I'm working with a old database and drawing blank on how to set up the association and index it with Thinking Sphinx. I want to index the People and Group's skill. I have Users. Users can create ...
0
votes
2answers
208 views

acts_as_taggable_on and rails autocomplete gem - displaying tag counts

I am using the acts_as_taggable_on gem and the rails jquery autocomplete gem I know how to get the tag counts via the gem I know that in order to display something else other than the return search ...
1
vote
2answers
152 views

custom validations with acts-as-taggable-on

Hi I am working on a Rails 3 project and I am using acts-as-taggable-on and everything works perfectly! :) I just have one question. Does anyone know how I can add my 'custom' validation to ...
0
votes
1answer
112 views

how to rename a tag with ActsAsTaggableOn

In a rails 3 application , I'm using ActsAsTaggableOn to tag my articles. I'd like to be able to rename tags, with an edit view. i've made a *tags_controller.rb* and a view/tags/edit.html.haml. In ...
0
votes
1answer
61 views

In Rails can i pass additional filter options in tagged_with method for acts-as-taggable-on?

I have an object called Course. I would like to provide tags on courses so that users can search/filter based on those tags. I'm using the gem acts-as-taggable-on: Course.tagged_with(params[:tag]) ...
0
votes
2answers
63 views

Getting tag count with Act_as_taggable_on not working

I've implemented the acts_as_taggable_on gem and I can see on the db the tag table which tags I have. I am tagging the model Card, and when I do Card.tag_counts all I get is ...
-1
votes
1answer
150 views

Acts as taggable on Rails

How can I make an index route/action to see all the tags that I've created!, I'm using the gem at https://github.com/mbleigh/acts-as-taggable-on Thanks.
0
votes
0answers
103 views

Combining kaminari and acts-as-taggable-on

I'm trying to use both acts-as-taggable-on and kaminari on a site i'm building, and both are technically working, but the behavior is unfavorable. Right now, my tag indeces are paginated, as they ...
0
votes
1answer
64 views

association or tagging for conception in rails 3

I'm facing a conception problem in developping a website for my videogame. I have a Model named VideoLink which contain a title, a description and a link to a webvideo (for example youtube). I have ...
0
votes
1answer
99 views

ActsAsTaggableOn after own tag implementation

I had my own implementation of tags in my rails application and wanted to replace it by the ActsAsTaggableOn gem. I generated the migration and deleted all the migrations with tags in it, but forgot ...
0
votes
2answers
270 views

Tagging from Scratch: the Querying Database issue (SOLVED with Gem ActsAsTaggableOn and jQuery-tokeninput)

@saverio was successful on answer this database query question on Tagging from Scratch: the Tag Cloud Issue Now I'm trying to connect the tagging system with the jQuery-tokenInput to Create and Find ...
0
votes
0answers
103 views

ActsAsTaggableOn::Tag - How to delete one of the tags?

I am using the ActsAsTaggableOn plugin for rails 3.0. Currently, I am assigning user tags to task models, while also keeping track of the tag ownership (e.g. I need to know which user created a ...
0
votes
1answer
122 views

Using acts_as_tagger in User model with Devise

After watching RailsCast #382 on tagging with acts-as-taggable-on I have one question. When using Devise for authentication is there any way to set up tag ownership using current_user? class User ...

1 2 3 4 5