This is some of the information provided by the docs for dynamic tag contexts in acts_as_taggable_on…
@user = User.new(:name => "Bobby")
@user.set_tag_list_on(:customs, "same, as, tag, list")
@user.tag_list_on(:customs) # => ["same","as","tag","list"]
@user.save
@user.tags_on(:customs) # => [<Tag name='same'>,...]
@user.tag_counts_on(:customs)
User.tagged_with("same", :on => :customs) # => [@user]
My question is how do I get a compliment of the custom tag list that I create. I want :tags – :customs, that is the set of all tags minus the specified tags of customs.
From their Github page:
Update
You could try: