Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
2k views

How to add tagging with autocomplete to an existing model in Rails?

I'm trying to add "tags" to an Article model in a Rails 3 application. I'm wondering if there is a gem or plugin that has adds both the "tagging" functionality in the model and also the auto-complete ...
4
votes
3answers
1k views

Thinking Sphinx and acts_as_taggable_on plugin

I installed Sphinx and Thinking Sphinx for ruby on rails 2.3.2. When I search without conditions search works ok. Now, what I'd like to do is filter by tags, so, as I'm using the acts_as_taggable_on ...
3
votes
1answer
123 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
2answers
399 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
1answer
743 views

Sort tag cloud alphabetically in acts_as_taggable_on_steroids

I got the acts_as_taggable_on_steroids plugin to work fine. The tag_cloud method in my view create and formats the cloud properly however the tags are listed in order of 'count desc'. How to I ...
1
vote
1answer
128 views

Saving tags with acts_as_taggable and activeadmin

I'm using ActiveAdmin and acts_as_taggable in a rails 3 app, and I can get the tag list to show fine as a checklist on edit pages, and I can add tags using the console and then remove them using the ...
1
vote
1answer
94 views

how to find number of tag matches in acts as taggable on

I have two entries in my database Obj1 is tagged with "hello, world, planet" Obj2 is tagged with "hello" if I do modelName.tagged_with(["hello", "world", "planet", "earth"], :any=>true) I want to ...
1
vote
1answer
1k views

Rails 3 tagging problems, acts_as_taggable_on

I'm using acts_as_taggable_on to add tags to posts, other tagging plugins/gems don't work with rails 3. I can edit/display tags on the post model and the tags controller displays the posts tagged by ...
1
vote
2answers
315 views

acts_as_taggable undefined method 'each' error

I am trying to use acts_as_taggable plugin to include tag functionality in my ruby on rails application. I have attached the code. I have installed the plugin and also run the migrations.I am getting ...
1
vote
0answers
1k views

Unknown record property / related component “…” on “…” with sfDoctrineActAsTaggablePlugin

I'm using the symfony plugin sfDoctrineActAsTaggablePlugin to add a Taggable behaviour to some objects of my model. I followed the instruction given here but when I want to save a taggable element in ...
1
vote
1answer
107 views

Rails acts_as_taggable_on grouped alphabetically?

Having sorted the tag_counts hash via the following code: sorted_tags = Contact.tag_counts.sort{ |x,y| x.name.downcase <=> y.name.downcase } what is the easiest/most efficient way to display the ...
1
vote
1answer
243 views

Sphinx - When to use 'has' and 'indexes' for fields

I installed Sphinx and Thinking-Sphinx some days ago on my ruby on rails 2.3.2, and basic searching works great. This means, without any conditions. Now, I want to filter the search with some ...
1
vote
1answer
219 views

Hyphenate tags added to acts_as_taggable_on

I am using acts_ as_ taggable_on in my app and have it working perfectly however I am looking for information on how to make one modification. At present if I enter a tag which includes spaces, the ...
1
vote
1answer
312 views

LocalJumpError, Tag Cloud with acts_as_taggable on Rails 2.3.5

I'm using acts_as_taggable_on_steroids plugin with rails 2.3.5 to build a tag cloud and I'm unfamiliar with the syntax of their view loop. I couldn't find any ruby doc explaining that loop either. ...
1
vote
1answer
567 views

find all children of an object tagged with acts_as_taggable_on

I have a rails site with two models: events and dates events has many dates events are tagged using acts_as_taggable_on I'm trying to find all dates (chronological order) for events tagged with a ...
1
vote
1answer
201 views

How can I scope acts_as_taggable_on_stereoids by Account?

If I have my website logically split into accounts (eg. acme.mywebsite.com, xyz.mywebsite.com), how can I implement act-as-taggable-on-steroids and have the tags scoped by the current account ? To ...
0
votes
1answer
29 views

Tag cloud of only specific posts in rails

Hi i am using acts_as_taggable in my rails app 2.3.11. I have model User who can posts which has tags associated . So i am using like @tags = User.find(:first).posts.tag_counts to get the tags ...
0
votes
2answers
84 views

Does the :any flag overwrites the :on (context) flag in acts_as_taggable_on's tagged_with?

I'm confused with how the flags :on and :any works together in the "tagged_with" method of acts_as_taggable_on. For example, if I have the following users @user1 and @user2: class User < ...
0
votes
1answer
144 views

How to search by context using acts-as-taggable-on

I'm having trouble understanding how the "tagged_with" method would work in the case where I wanted to search "by context". For example, if I have the following @user: class User < ...
0
votes
1answer
122 views

Rails Why does acts_as_taggable not need to be in a nested form to create tags?

When I have a relation such as: class Programmer < ActiveRecord::Base has_many :projects has_many :assignments, :through => :projects acts_as_taggable end class Assignment < ...
0
votes
1answer
139 views

Rails finding all posts with certain tags without using acts_as_taggable

So I'm trying to learn rails and I don't want to cheat just yet. post model: class Post < ActiveRecord::Base has_many :features has_many :tags, :through => :features end tag model: ...
0
votes
1answer
555 views

Rails - Acts_as_Taggable

Anyone here have experience with the Rails Acts as Taggable plugin? https://github.com/mbleigh/acts-as-taggable-on/ I'm curious to know the following: Can you keep tags silod? My app has projects, ...
0
votes
1answer
169 views

Rails: Sort most used acts_as_taggable tags by a user

I have set up two models: user and post. Each post belongs_to a user. posts also have tags, using acts_as_taggable. On UserController#show I want to list the tags the user uses, sorting from most used ...
0
votes
0answers
156 views

acts-as-taggable-on fails to initialize Tag object

At some point I started getting the error message: uninitialized constant TaggingsController::Tag for @tags = Tag.all(:order=>'name') and @tag = Tag.new previously it had been working. I can ...
0
votes
1answer
225 views

Rail plugin acts_as_taggable_on :through

I have two models: class Employee < ActiveRecord::Base has_many :projects end class Project < ActiveRecord::Base acts_as_taggable_on :skills, :roles end I would like to find Employees ...
0
votes
1answer
342 views

Stable URL of acts_as_taggable plugin in Ruby on Rails

In one of my applications on Ruby on Rails, I am using acts_as_taggable plugin. Coding was doing fine and suddenly it started giving following error. RuntimeError (acts_as_taggable_on_steroids has ...
0
votes
2answers
406 views

acts_as_taggable_on with finders

I would like to use acts_as_taggable_on to do a auto suggest style tagging similar to stackoverflow below... that or facebook. But I'm unsure looking thru the rdocs what methods to use to pull all ...
0
votes
1answer
124 views

Rails (pagination and tags)

I stumbled upon a problem of how to make work together acts_as_taggable (on steroids) and will_paginate gems. What I found on this problem is this: ...
0
votes
2answers
67 views

Model's method not being recognized when called

I'm using ruby on rails 2.3.2 and also using the acts_as_taggable_on puglin. That generated me two db tables: tags and taggings. As I didn't need anything more from those, I didn't create a Tag ...
0
votes
1answer
311 views

How can I delete the tag from the tag list of the act_as_tagg plugin?

I have tried to destroy tags from the given code but it's not working. How can it be accomplished? @tag = Tag.find_by_name(params[:name]) @tag.destroy render :update do |page| ...
0
votes
2answers
266 views

Link_to doesn't work when using acts-as-taggable-on with custom method

Or rather I don't know how to specify the route for it. I have my controller setup us: def tags @clients = current_user.clients.find_tagged_with(params[:tag]) end and my views Tags: <% for ...
0
votes
1answer
160 views

undefined_method 'tag_count' using acts_as_taggable_on_steroids

I am using acts_as_taggable to create a tag cloud for my application. I have a model 'Question' which is using the acts_as_taggable plug-in. I basically want to filter the tags for the question model. ...
0
votes
1answer
165 views

How to return the number of Posts Tagged with “example” using acts_as_taggable under ROR

How to return the number of Posts Tagged with "example" using acts_as_taggable under ROR currently I am implementing this by declare <%=Questions.find_tagged_with("example", :match_all => ...