Skip to content
This repository was archived by the owner on Jun 17, 2020. It is now read-only.

Latest commit

 

History

History
18 lines (13 loc) · 342 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 342 Bytes

What

Adds pagination scopes to your mongoid models.

Usage

class Person
  include Mongoid::Document
  include Mongoid::Pagination

  default_page_size 20
end

Person.paginate(:page => 2, :limit => 25) # limit and page
Person.paginate(:offset => 20, :limit => 25) # limit and offset
Person.per_page(25) # just does a limit