A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for Ruby webapps
Go to file
Akira Matsuda e084dc4b36 suppress logging when rendering each partial 2011-02-06 22:09:27 +09:00
app/views/kaminari partialize tags 2011-02-05 23:45:49 +09:00
lib suppress logging when rendering each partial 2011-02-06 22:09:27 +09:00
spec default PER_PAGE to 25 2011-02-06 20:11:45 +09:00
.document Initial commit to kaminari. 2011-02-05 22:32:10 +09:00
.gitignore ignore log 2011-02-05 23:45:49 +09:00
.rspec prepare for the specs 2011-02-05 23:45:49 +09:00
Gemfile works on AR 3.0 now! 2011-02-05 23:46:23 +09:00
Gemfile.lock bundle 2011-02-05 23:45:49 +09:00
LICENSE.txt Initial commit to kaminari. 2011-02-05 22:32:10 +09:00
README.rdoc fix the document 2011-02-06 20:17:30 +09:00
Rakefile documentation 2011-02-06 16:58:07 +09:00
TODO.txt suppress logging when rendering each partial 2011-02-06 22:09:27 +09:00
VERSION Version bump to 0.2.1 2011-02-06 20:19:04 +09:00
kaminari.gemspec Version bump to 0.2.1 2011-02-06 20:19:04 +09:00

README.rdoc

= Kaminari

A Scope & Engine based clean and powerful and customizable and sophisticated paginator for Rails 3


== Features

* Clean
Does not globally pollute Array, Hash, Object or AR::Base.

* Easy to use
Just bundle the gem, then your models are ready to be paginated. No configuration. Don't have to define anything in your models or helpers.

* Scope based simple API
Everything is method chainable. No Hash for the query. You know, that's the Rails 3 way.
No special collection class or something for the paginated values but uses a general AR::Relation instance. So, of course you can chain any other conditions before or after the paginator scope.

* Engine based customizable helper
As the whole pagination helper is basically just a collection of links and non-links, Kaminari renders each of them through its own partial template inside the Engine. So, you can easily modify their behaviour or style or whatever by overriding partial templates.


== Rails versions

3.0.x and 3.1


== Install

Put this line in your Gemfile:
  gem 'kaminari'

Then bundle:
  % bundle


== Usage

* Fetch the 7th page of the users (per_page = 25 by default)

  @users = User.page(7)

* Show a lot more users per each page (change the per_page value)

  @users = User.page(7).per(50)

* Typically, your controller code will look like this:

  @users = User.page params[:page]

* In your view

  <%= paginate @users %>

* Specify the "window" size

  # "inner window" (4 by default)

  <%= paginate @users, :window => 3 %>

  # "outer window" (1 by default)

  <%= paginate @users, :outer_window => 3 %>

  # outer window can be separetely specified by "left", "right" (1 by default)

  <%= paginate @users, :left => 0, :right => 2 %>

* Customize the pagination helper

  % rails g kaminari:views
Then edit the partials in your app's app/views/kaminari/ directory.


== Contributing to Kaminari

* Fork, fix, then send me a pull request.


== Copyright

Copyright (c) 2011 Akira Matsuda. See LICENSE.txt for further details.