README.md in binco-3.4.0 vs README.md in binco-3.5.0
- old
+ new
@@ -113,9 +113,18 @@
]
end
```
### Pagination
+
+## Will Paginate
+
+Add Will Paginate to your Gemfile
+
+```
+gem "will_paginate", '~> 3.0'
+```
+
```ruby
# controller
@posts = Post.all.page(params[:page])
```