girak / mongoid-pagination

Pagination scopes for mongoid

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Pagination scopes for mongoid

License:MIT License


Languages

Language:Ruby 100.0%