Grape::Kaminari

kaminari paginator integration for grape API framework.
Installation
Add this line to your application's Gemfile:
gem 'grape-kaminari'
And then execute:
$ bundle
Or install it yourself as:
$ gem install grape-kaminari
Usage
class MyApi < Grape::API
include Grape::Kaminari
resource :posts do
desc 'Return a list of posts.'
params do
use :pagination, per_page: 20, max_per_page: 30, offset: 5
end
get do
posts = Post.where(...)
paginate(posts)
end
get do
things = ['a', 'standard', 'array', 'of', 'things', '...']
paginate(Kaminari.paginate_array(things))
end
end
end
Now you can make a HTTP request to your endpoint with the following parameters
page: your current page (default: 1)
per_page: how many to record in a page (default: 10)
offset: the offset to start from (default: 0)
curl -v http://host.dev/api/posts?page=3&offset=10
and the response will be paginated and also will include pagination headers
X-Total: 42
X-Total-Pages: 5
X-Page: 3
X-Per-Page: 10
X-Next-Page: 4
X-Prev-Page: 2
X-Offset: 10
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/bsm/grape-kaminari.