public
Description: A slug/permalink plugin for ActiveRecord
Clone URL: git://github.com/leethal/slug.git
slug /
README
Slug
====

You probably want to use http://github.com/norbauer/salty_slugs instead.

Slugs columns, adds a slug finder and sets to_param for slug models. Requires a 'slug' field in the database, where the 
slug itself is stored.


Example
=======

 class Post < ActiveRecord::Base
   has_slug # defaults to title
 end

 class Document < ActiveRecord::Base
   has_slug :filename
 end


Copyright (c) 2008 August Lilleaas, released under the MIT license