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
Tweaked README.
norman (author)
Wed Oct 22 09:34:53 -0700 2008
commit  869da046279a5916223cd0be2873de1bfb56e594
tree    5c7c07356581b6f6b4185eb5c8734b6ec302e6f3
parent  592edd7dda34c375d79927526d22f9538f9df60e
...
20
21
22
23
 
24
25
26
...
88
89
90
91
 
92
93
94
...
99
100
101
102
 
103
104
105
...
189
190
191
192
 
193
194
195
...
20
21
22
 
23
24
25
26
...
88
89
90
 
91
92
93
94
...
99
100
101
 
102
103
104
105
...
189
190
191
 
192
193
194
195
0
@@ -20,7 +20,7 @@ h2. Why?
0
 * They give no hint about the number of records in your database.
0
 * They are better for search engine optimization.
0
 
0
-However, text-based ids in URL's present some problems too:
0
+h3. But...
0
 
0
 * They can change, breaking your URL's.
0
 * They can have invalid URL characters, breaking your links in some browsers.
0
@@ -88,7 +88,7 @@ h2. Extra Features
0
 
0
 h3. Slug Versioning
0
 
0
-Friendly_id will record changes to slugs so that you can tell when the model
0
+FriendlyId will record changes to slugs so that you can tell when the model
0
 is found with an older slug. This can be useful if you want to do a 301
0
 redirect to your updated URL.
0
 
0
@@ -99,7 +99,7 @@ redirect to your updated URL.
0
   
0
 h3. Unique Slug Names
0
 
0
-Friendly_id will append a number to the end of the id to keep it unique if
0
+FriendlyId will append a number to the end of the id to keep it unique if
0
 necessary:
0
 
0
   /posts/new-version-released
0
@@ -189,7 +189,7 @@ Please report them on "Lighthouse":http://randomba.lighthouseapp.com/projects/14
0
 
0
 h2. Credits:
0
 
0
-Friendly_id was created by "Norman Clarke":mailto:norman@randomba.org and 
0
+FriendlyId was created by "Norman Clarke":mailto:norman@randomba.org and 
0
 "Adrian Mugnolo":mailto:adrian@randomba.org.
0
 
0
 Copyright (c) 2008 Norman Clarke and Adrian Mugnolo, released under the MIT

Comments