Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uxxman/rails_api_paginate
Pagination support to rails API-Only applications.
https://github.com/uxxman/rails_api_paginate
api pagination rails
Last synced: 1 day ago
JSON representation
Pagination support to rails API-Only applications.
- Host: GitHub
- URL: https://github.com/uxxman/rails_api_paginate
- Owner: uxxman
- License: mit
- Created: 2018-09-28T12:09:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-02-06T06:05:14.000Z (almost 4 years ago)
- Last Synced: 2024-10-21T02:02:20.784Z (23 days ago)
- Topics: api, pagination, rails
- Language: Ruby
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# RailsApiPaginate
[![Gem Version](https://badge.fury.io/rb/rails_api_paginate.svg)](https://badge.fury.io/rb/rails_api_paginate)
Add pagination support to rails API-Only applications for ActiveRecord relations.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'rails_api_paginate'
```And then execute:
$ bundle
Next, you need to run the generator:
$ rails g rails_api_paginate:install
## Usage
Include RailsApiPaginate in controller where you need to paginate ActiveRecord relations.
```ruby
include RailsApiPaginate
```And then:
```ruby
records, meta = paginate(collection)
```Example:
```ruby
posts = Post.all
posts, meta = paginate(posts)
```The `meta` object is a `Hash` that holds pagination details, e.g.
```ruby
{
current_page: 2,
next_page: 3,
prev_page: 1,
total_pages: 4,
total_items: 100
}
```## Development
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/uxman-sherwani/rails_api_paginate.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).