I'm trying to get tags working in my rails application and want to use acts_as_taggable. Firstly I followed the instructions I found in Rails Recipies (a free sample bit online) that used the acts_as_taggable plugin. However, I then found this site which seems to have a gem for acts_as_taggable which is more advanced (has options for related tags etc).
I've tried to follow the instructions there to install it, but I keep getting errors.
Firstly I installed the gem as normal (gem install acts_as_taggable
) and then I tried various ways to get rails to recognise and load the gem. The require_gem
listed on the site didn't work (I assume that is an old command that has been removed) and neither did a straight require
(although that has worked for my bluecloth gem).
I've then tried using config.gem 'acts_as_taggable'
but that keeps telling me that I haven't got acts_as_taggable installed and asks me to run rake gems:install
. No matter how many times I run that it still gives the error!
Any ideas?