forked from vanpelt/merb_paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
58 lines (39 loc) · 1.44 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
########################################
# There have been significant changes. #
# Read below before upgrading. #
########################################
merb_paginate
=============
Pagination that relies on the awesomeness that is the will_paginate gem.
http://errtheblog.com/posts/56-im-paginating-again
Lots of credit goes to those dudes. It's a fantastic plugin, it just is too
rails centric to use with merb out of the box. A lot of things had to be
changed to not rely on the magicness of rails (which is why it's not a fork
of the project).
This merb plugin is very incomplete and has no specs (Hint: contribute!).
Install
=======
git clone git://github.com/myobie/merb_paginate.git
cd merb_paginate
sudo rake install
Example App
===========
An example app is now included in the example folder. It comes with a sqlite3
database that has some posts already in it. I am not sure if the db is cross-
platform, let me know.
Usage
=====
Using this plugin is like so in init.rb:
dependency 'merb_paginate'
Right now, DataMapper and ActiveRecord work (Sequel might work, let me know).
I hope to have a fully speced paginate finder for each orm evenutally.
(Hint: contribute!)
Using the view helper is like so:
<%= merb_paginate @posts %>
It is almost exactly like will_paginate, except not as smart about the current collection.
There are also:
<% paginated_section @posts do %>
...
<% end %>
and:
<%= page_entries_info @posts %>