using rails acts as taggable on plugin

A tagging plugin for Rails applications that allows for custom tagging along dynamic contexts.Plugin Installationscript/plugin install git://github.com/mbleigh/acts-as-taggable-on.gitGem Installationgem install mbleigh-acts-as-taggable-on --source http://gems.github.comAuto Installinclude following line in environment.rbconfig.gem "mbleigh-acts-as-taggable-on", :source => "http://gems.github.com", :lib => "acts-as-taggable-on"Post Installation (Rails)1. script/generate acts_as_taggable_on_migration2. rake db:migrateUsageAdd following line in your model for which you wanted to be tagged.acts_as_taggable_on :tagsExampleclass Post < … Continue reading using rails acts as taggable on plugin