i\'m new to rails. There is one question about this plugin. I\'ve read the official readme file, and few other topics, but I still can\'t make it work.
What\'s the Right Way(tm) to find the entries that have no tags? I tried using Entry.tagged开发者_如何学C_with(nil) but it just returns an empty hash.
If I want to select a group of records from a database using a SQL query and further qu开发者_开发问答alify it by what tag(s) are set on a record - is there an easy way to do this?
Hey everyone, I\'m trying to add tagging to a 开发者_开发技巧rails photo gallery system I\'m working on. It works from the back-end, but if I try to set or change it in the form view, it doesn\'t work
I would like to assign two different \"types\" of tags (sector categories and free tagging) to a Company model using acts_as_taggable_on. NB: I\'m new to RoR!
I am using acts-as-taggable on. Two models: User and Posts. Posts belongs_to :user User has_many :posts
I\'m using the acts_as_taggable_on plugin to provide tagging for my Framework model. I\'ve got the functional tests that Rails generates, as well as the fixtures it uses and I would like to expand the
I\'m using acts_as_taggable_on to add tags to posts, other tagging开发者_C百科 plugins/gems don\'t work with rails 3. I can edit/display tags on the post model and the tags controller displays the pos
How can I get all the tags for a model\'s associ开发者_运维问答ated models using acts-as-taggable-on?
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 n开发