Questions tagged [acts-as-taggable-on-ster]
7 questions
3
votes
3 answers
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 "rails generate acts_as_taggable_migration",but the…

ravi
- 31
- 3
3
votes
1 answer
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 < ActiveRecord::Base
acts_as_taggable_on :tags,…

Satchel
- 16,414
- 23
- 106
- 192
2
votes
1 answer
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 I have the following code in my tag cloud:
<%=…

allesklar
- 9,506
- 6
- 36
- 53
1
vote
1 answer
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 on SO about selecting random records via Rails,…

Scott Greenfield
- 2,788
- 2
- 22
- 21
0
votes
1 answer
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 acts_as_taggable in the model that I would like to have tags…

Jacky
- 49
- 1
- 5
0
votes
1 answer
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 tagging. Not the class, I understand that is…

Teddy
- 579
- 1
- 4
- 17
0
votes
1 answer
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 have used acts_as_taggable_on…

Satchel
- 16,414
- 23
- 106
- 192