for the container tag
324 |
325 | == 0.7.0
326 |
327 | * Ajaxified paginator templates
328 |
329 | == 0.6.0
330 |
331 | * Hamlized paginator templates
332 |
333 | == 0.5.0
334 |
335 | * reset content_for :kaminari_paginator_tags before rendering #1 [hsbt]
336 |
337 | == 0.4.0
338 |
339 | * partialize the outer div
340 |
341 | == 0.3.0
342 |
343 | * suppress logging when rendering each partial
344 |
345 | == 0.2.0
346 |
347 | * default PER_PAGE to 25 [hsbt]
348 |
349 | == 0.1.0
350 |
351 | * First release
352 |
--------------------------------------------------------------------------------
/README.rdoc:
--------------------------------------------------------------------------------
1 | = Kaminari
2 |
3 | A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for modern web app frameworks and ORMs
4 |
5 |
6 | == Features
7 |
8 | === Clean
9 | Does not globally pollute +Array+, +Hash+, +Object+ or
AR::Base.
10 |
11 | === Easy to use
12 | Just bundle the gem, then your models are ready to be paginated. No configuration required. Don't have to define anything in your models or helpers.
13 |
14 | === Simple scope-based API
15 | Everything is method chainable with less "Hasheritis". You know, that's the Rails 3 way.
16 | No special collection class or anything for the paginated values, instead using a general
AR::Relation instance. So, of course you can chain any other conditions before or after the paginator scope.
17 |
18 | === Customizable engine-based I18n-aware helper
19 | 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, style or whatever by overriding partial templates.
20 |
21 | === ORM & template engine agnostic
22 | Kaminari supports multiple ORMs (ActiveRecord, Mongoid, MongoMapper) multiple web frameworks (Rails, Sinatra), and multiple template engines (ERB, Haml).
23 |
24 | === Modern
25 | The pagination helper outputs the HTML5