Welcome to the Tagging project!
Tagging is a plugin for Ruby on Rails that makes it easy to support content tagging (folksonomy). Unlike existing plugins, Tagging includes everything you need to work with tags in the model, view, and controller.
Getting Started
The Tagging plugin is incredibly easy to use. No, really, take a look:
Model Code:1 2 3 |
class Article < ActiveRecord::Base acts_as_taggable end |
1 2 |
<h1>Tags: <%= tag_editor_for(@article) %></h1> <%= tag_cloud_for(@article) %> |
Take a look at the quick start guide, and in just a few minutes you’ll be tagging your models.
Other Tagging Solutions
- The acts_as_taggable Ruby Gem
- The acts_as_taggable Rails plugin from DHH
Updated Feb 22, 2007 by Peter Jones
Tags:
Comments:
Have something to say? Login to post a comment.