You might want to have a look at the readme in the
vendor/plugins/acts_as_taggable_on_steroids directory.
You will read the text hereafter.
In short : there is not tag_with method.
To add a tag do : p.tag_list.add("Great", "Awful")
=== Basic tagging
Let's suppose users have many posts and we want those posts to have
tags.
The first step is to add +acts_as_taggable+ to the Post class:
class Post < ActiveRecord::Base
acts_as_taggable
belongs_to :user
end
We can now use the tagging methods provided by acts_as_taggable,
<tt>#tag_list</tt> and <tt>#tag_list=</tt>. Both these
methods work like regular attribute accessors.