Auto Tags plugin
Plugin details
Documentation
Install the plugin:
ruby script/plugin install http://auto-tags.googlecode.com/svn/trunk/auto_tags/
model specific usage
# single attribute example class Vendor < ActiveRecord::Base auto_tags :include => :product end # multiple attributes example class Vendor < ActiveRecord::Base auto_tags :include => [:product, :description] end # associations example class Book < ActiveRecord::Base has_many :authors auto_tags :include => [:title, :description, :authors_names] def authors_names authors.collect{|a| a.name.join(' ')} end end
generic usage
AutoTags::AutoTagsGeneration.generate_tags(content)
Further Documentation
There is currently no advanced documentation for this plugin.
New documentationEdit plugin | (0 older versions) | Last edited by: hardway, 7 months ago

