public
Rubygem
Description: Most awesome pagination solution for Ruby
Homepage: http://github.com/mislav/will_paginate/wikis
Clone URL: git://github.com/mislav/will_paginate.git
v2.3.1, bugfix release
mislav (author)
Sun May 04 11:47:39 -0700 2008
commit  bccdd3c24b35594b3c13fe8b98448f7e26efef2a
tree    d2f05bb4842e3136190fe7b3351a12901a6bd898
parent  802d8301923e570bc43ae61320fd02b223e22e8f
...
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
0
@@ -1,3 +1,8 @@
0
+== 2.3.1, released 2008-05-04
0
+
0
+* Fixed page numbers not showing with custom routes and implicit first page
0
+* Try to use Hanna for documentation (falls back to default RDoc template if not)
0
+
0
 == 2.3.0, released 2008-04-29
0
 
0
 * Changed LinkRenderer to receive collection, options and reference to view template NOT in
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module WillPaginate #:nodoc:
0
   module VERSION #:nodoc:
0
     MAJOR = 2
0
     MINOR = 3
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end
...
1
2
3
4
 
 
5
6
7
...
1
2
 
 
3
4
5
6
7
0
@@ -1,7 +1,7 @@
0
 Gem::Specification.new do |s|
0
   s.name = 'will_paginate'
0
- s.version = '2.3.0'
0
- s.date = '2008-04-26'
0
+ s.version = '2.3.1'
0
+ s.date = '2008-05-04'
0
   
0
   s.summary = "Most awesome pagination solution for Rails"
0
   s.description = "The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates."

Comments

    No one has commented yet.