I am using acts_as_taggable_on on my rails 3.1 app. This is my model
class User < ActiveRecord::Base
acts_as_taggable_on :skills
end
I get this error the moment I try anything with the user object.
NoMethodError: undefined method `acts_as_taggable_on' for #<Class:0x90bfd84>
I even tried just using acts_as_taggable but didnt work. Am i doing anything wrong or is this a known issue?
gem 'acts-as-taggable-on'to your Gemfile and ranbundle install? – eugen Sep 22 '11 at 18:29