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
Fixed bad Github urls and updated repository links.
norman (author)
Fri Jul 25 11:05:15 -0700 2008
commit  abe7efe3faee949e9de168fcf548d955bf684d4b
tree    6b3574440b7b03ec9860487a27099afaf8af71a9
parent  eb170ce467532473eafde4bb4125a9165481f6c0
0
...
135
136
137
138
 
139
140
141
142
 
143
144
145
...
154
155
156
 
 
 
 
 
157
158
159
...
135
136
137
 
138
139
140
141
 
142
143
144
145
...
154
155
156
157
158
159
160
161
162
163
164
0
@@ -135,11 +135,11 @@ Also note, for this to work, you must install the "unicode" and "iconv" gems.
0
 
0
 == Git repository:
0
 
0
-git@github.com:norman/friendly_id.git
0
+git://github.com/norman/friendly_id.git
0
 
0
 == Setup:
0
 
0
-- script/plugin install git@github.com:norman/friendly_id.git
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
@@ -154,6 +154,11 @@ is to remove dead slugs older than 45 days, but you can change that by doing:
0
 
0
 rake:friendly_id:remove_old_slugs DAYS=60
0
 
0
+If you're using an older version of Rails that does not support installing
0
+plugins via Git, you can {download a tarball of the
0
+plugin}[http://github.com/norman/friendly_id/tarball/master] and unarchive it
0
+in your vendor/plugins directory.
0
+
0
 == Bugs:
0
 
0
 Please report them on Lighthouse[http://randomba.lighthouseapp.com/projects/14675-friendly_id].

Comments