1

Does Ruby on Rails offer pagination methods/helpers as a part of frame works?

Mithun Sreedharan
  • 49,883
  • 70
  • 181
  • 236
  • 1
    State of pagination has not really changed since http://stackoverflow.com/questions/967183/does-rails-have-a-built-in-pagination-solution – wuputah Nov 22 '10 at 06:09

2 Answers2

6

It used to offer but it has been discontinued from rails 2.0. Why do you need it when you have an awesome plugin called Will Paginate? If you still want to go the ancient way, here is a plugin called Classic Pagination. Extracted from rails 1.x. But doesn't look like it is being maintained post rails 2.3.4.

Chirantan
  • 15,304
  • 8
  • 49
  • 75
3

There's a new pagination library called Kaminari. There's a Railscast on it.