I have setup the acts-as-taggable-on gem on Rails 3.0.3 and Ruby 1.9.2. The tagging is working as expected but the taggings table is not capturing the tagger_id.
Here is what I have setup:
class Course < ActiveRecord::Base
# attr_accessible :title, :description, :duration, :format
acts_as_taggable
class User < ActiveRecord::Base
# identifies user who tags as part of the acts-as-taggable-on gem
acts_as_tagger
Thanks in advance for any help identifying what I am missing.