I'm using ruby on rails 2.3.8, and I've installed the acts_as_taggable_on plugin for tagging announcements and everything was fine until I discovered I had no easy and neat way of getting all the announcements tagged with a certain id(the only method I found was Tag.tagged_with(tag_name)).
So, I just wanted to relate the Tag model of the plugin, to a Tagging model I created (of ActiveRecord), representing the taggings table that is included within the plugin.
Is it possible to do that?