public
Fork of mislav/will_paginate
Description: Most awesome pagination solution for Rails
Homepage: http://github.com/mislav/will_paginate/wikis
Clone URL: git://github.com/technoweenie/will_paginate.git
Installation instructions for gem
mislav (author)
Sun Mar 02 14:43:38 -0800 2008
commit  6ef9e37582115606bd3315f479727312af7ae641
tree    4115f0879edc5409f7e15e0e2eac7804eec7c12c
parent  935bb43564902d1dbf5d3ed61fa25b716340c965
0
...
15
16
17
18
 
19
20
 
21
22
 
23
24
 
25
26
 
 
 
27
28
 
29
30
 
 
31
32
 
33
34
35
36
37
 
 
38
39
40
...
15
16
17
 
18
19
 
20
21
 
22
23
 
24
25
 
26
27
28
29
 
30
31
 
32
33
34
 
35
36
 
 
 
 
37
38
39
40
41
0
@@ -15,26 +15,27 @@ check it out.
0
 Your mind reels with questions? Join our Google
0
 group[http://groups.google.com/group/will_paginate].
0
 
0
-== Install the plugin
0
+== Installation
0
 
0
-Simply do:
0
+Will Paginate officially supports Rails versions 1.2.6 and 2.0.x.
0
 
0
- script/plugin install svn://errtheblog.com/svn/plugins/will_paginate
0
+Previously, the plugin was available on the following SVN location:
0
 
0
-Alternatively, you can add the whole Err repository to plugin sources:
0
+ svn://errtheblog.com/svn/plugins/will_paginate
0
 
0
- script/plugin source svn://errtheblog.com/svn/plugins
0
+In February 2008, it moved to GitHub[http://github.com/mislav/will_paginate/tree]
0
+to be tracked with git. The SVN repo continued to have updates, but not
0
+forever. Therefore you should switch to using the gem:
0
 
0
-You only have to do this once, then you can install will_paginate to each of your applications simply like this:
0
+ gem install will_paginate --no-ri
0
 
0
- script/plugin install will_paginate
0
+After that, you can remove the plugin from your applications and add
0
+a simple require to the end of config/environment.rb:
0
 
0
-To see what other plugins are now available to you, list the newly added plugin source:
0
+ require 'will_paginate'
0
 
0
- script/plugin list --source=svn://errtheblog.com/svn/plugins
0
-
0
-The plugin officially supports Rails versions 1.2.6 and 2.0.2. You can browse
0
-its source code on Warehouse: http://plugins.require.errtheblog.com/browser/will_paginate
0
+That's it, just remember to install the gem on all machines that
0
+you are running applications on.
0
 
0
 == Example usage
0
 

Comments

    No one has commented yet.