Tagged Questions
The acts-as-taggable-on-ster tag has no wiki summary.
2
votes
1answer
406 views
how do I generate a tag cloud in acts_as_taggable_on?
I can't debug why I am getting an error:
class VendorsController < ApplicationController
def tag_cloud
@tags = Vendor.tag_counts_on(:tags)
end
I set this class as Taggable:
class Vendor ...
2
votes
1answer
160 views
Unicode issues with acts_as_taggable_on_steroids
I'm implementing a blog with tags with some French characters. My question has to do with how to deal with spaces and unicode (utf-8) characters in the url.
let's say I have a tag called: ohlàlà! and ...
1
vote
1answer
212 views
could not find generator acts_as_taggable_migration
in my rails3 app i installed acts_as_taggable_on_steroids through command "rails plugin install acts_as_taggable_on_steroids" and it got installed,but now the migration give me the problem.
I run ...
1
vote
1answer
104 views
Ruby on Rails Random Post via acts_as_taggable_on_steroids
Using Rails 3, and I'm a RoR noob, so this might be simple, but I can't seem to figure it out. What I mean is, I can get it to work, but I can't figure out the best way.
Ok, I've read every question ...
0
votes
1answer
220 views
Ruby on Rails Plugin: acts_as_taggable_on_steroids. Keep getting “method_missing” undefined local variable or method 'acts_as_taggble_on'
I am trying to implement a tagging system for my rails app. I employed the popular plugin acts_as_taggable_on_steroids, and followed the instruction on how to install it. I then included ...
0
votes
1answer
39 views
how do I add a second parameter to the tags in acts_as_taggable_on_steroids plugin
In my Rails application I am trying to use the acts_as_taggable_on_steroids plugin but it is falling short a little bit. I would like to add a second parameter to each tag that describes what it is ...
0
votes
1answer
379 views
not able to display acts_as_taggable_on tags on ruby on rails (and formtastic!)
Given
As the User, I am at a nested new vendors/5/reviews/new. In addition to :params that will get written to the Review model, I need to be able to include tags that belong to the Vendor model.
I ...