public
Rubygem
Description: FriendlyId is the “Swiss Army bulldozer” of slugging and permalink plugins for ActiveRecord. It allows you to create pretty URL’s and work with human-friendly strings as if they were numeric ids for ActiveRecord models.
Homepage: http://friendly-id.rubyforge.org
Clone URL: git://github.com/norman/friendly_id.git
Added lighthouse URL.
norman (author)
Fri Jul 25 06:01:48 -0700 2008
commit  0114ba8e8a225981d26e00c2a600b1dd1c9e3a99
tree    56f0725f3756cb7d5953e67774ada51e5b662021
parent  4527a3459e68fcdd45135f3bd9ff362b00bc6d43
0
...
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
 
152
153
154
...
165
166
167
 
 
168
169
170
...
133
134
135
 
 
 
 
 
 
 
 
 
136
137
138
139
140
141
 
142
143
144
145
...
156
157
158
159
160
161
162
163
0
@@ -133,22 +133,13 @@ you're using as the friendly_id.
0
 
0
 Also note, for this to work, you must install the "unicode" and "iconv" gems.
0
 
0
-== Subversion repository:
0
-
0
-http://svn.randomba.org/friendly_id
0
-
0
-A month of so after Rails 2.1 is released with support for plugins tracked via
0
-git, the subversion repository will be taken offline, and the git repository
0
-will be the way to go. For now, development is done using git but all changes
0
-are backported to the svn repository to support current users.
0
-
0
 == Git repository:
0
 
0
 git@github.com:norman/friendly_id.git
0
 
0
 == Setup:
0
 
0
-- script/plugin install http://svn.randomba.org/friendly_id/trunk
0
+- script/plugin install git@github.com:norman/friendly_id.git
0
 - script/generate friendly_id_migration
0
 - rake db:migrate
0
 - now add some code to your models: e.g., <tt>has_friendly_id :title, :use_slug => true</tt>
0
@@ -165,6 +156,8 @@ rake:friendly_id:remove_old_slugs DAYS=60
0
 
0
 == Bugs:
0
 
0
+Please report them on Lighthouse[http://randomba.lighthouseapp.com/projects/14675-friendly_id].
0
+
0
 At the moment, Model.exists? fails when using the slug (reported by Chris Nolan).
0
 
0
 Finder options are ignored when using slugs; this code returns results when it should not:

Comments