I would like to uniquely use owner tags in my app. My problem is that when I create / update a post via a form I only have f.text_field :tag_list which only upd
f.text_field :tag_list
Try using delegation:
class User < ActiveRecord::Base acts_as_taggable_on end class Post < ActiveRecord::Base delegate :tag_list, :tag_list=, :to => :user end
So when you save your posts it sets the tag on the user object directly.