A summary of data about the Ruby ecosystem.

https://github.com/mislav/will_paginate

Pagination library for Rails and other Ruby applications
https://github.com/mislav/will_paginate

Keywords

pagination pagination-library plugin rails ruby sequel sinatra

Keywords from Contributors

activerecord activejob mvc rubygems rack ruby-gem feature-flag crash-reporting background-jobs multithreading

Last synced: about 3 hours ago
JSON representation

Repository metadata

Pagination library for Rails and other Ruby applications

README.md

will_paginate

will_paginate is a pagination library that integrates with Ruby on Rails, Sinatra, Hanami::View, and Sequel.

gem 'will_paginate', '~> 4.0'

See installation instructions on the wiki for more info.

ℹ️ will_paginate is now in maintenance mode and it will not be receiving new features. See alternatives

Basic will_paginate use

## perform a paginated query:
@posts = Post.paginate(page: params[:page])

# or, use an explicit "per page" limit:
Post.paginate(page: params[:page], per_page: 30)

## render page links in the view:
<%= will_paginate @posts %>

And that's it! You're done. You just need to add some CSS styles to make those pagination links prettier.

You can customize the default "per_page" value:

# for the Post model
class Post
  self.per_page = 10
end

# set per_page globally
WillPaginate.per_page = 10

New in Active Record 3:

# paginate in Active Record now returns a Relation
Post.where(published: true).paginate(page: params[:page]).order(id: :desc)

# the new, shorter page() method
Post.page(params[:page]).order(created_at: :desc)

See the wiki for more documentation. Report bugs on GitHub.

Happy paginating.


Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 2 days ago

Total Commits: 739
Total Committers: 75
Avg Commits per committer: 9.853
Development Distribution Score (DDS): 0.31

Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
Mislav Marohnić m****c@g****m 510
mislav m****v@1****4 91
chris c****s@1****4 24
pj pj@1****4 17
Orien Madgwick 4****n 8
Ken Collins k****n@m****t 3
Eda Riedl e****l@g****m 3
Nathan Youngman g****t@n****m 3
Paul Hoffer g****t@p****m 3
Bernardo Srulzon b****o@g****r 3
Olle Jonsson o****n@g****m 2
Matt Aimonetti m****i@g****m 2
Kevin Glowacz k****n@g****o 2
Kamal Fariz Mahyuddin k****z@g****m 2
Denis Barushev b****v@g****m 2
Chris Eppstein c****s@e****t 2
Ben Pickles s****g@g****m 2
Alexey Pokhozhaev p****l@g****m 2
elengine i****e@g****m 2
Matthew Higgins d****r@m****m 1
Alexey Artamonov i@u****m 1
Bryan Larsen b****n@l****t 1
Chandresh Pant cp@c****n 1
Tobias Bielohlawek t****b@q****m 1
Tieg Zaharia t****g@k****m 1
Roman Gaufman r****n@x****m 1
Patrycjusz R. Łogiewa p****a@s****m 1
Morgan m****n@c****m 1
Mateusz Luterek m****k@l****o 1
MORITA Shintaro s****n@s****m 1
and 45 more...

Committer domains:


Issue and Pull Request metadata

Last synced: 16 days ago

Total issues: 78
Total pull requests: 59
Average time to close issues: over 3 years
Average time to close pull requests: about 2 years
Total issue authors: 73
Total pull request authors: 42
Average comments per issue: 3.24
Average comments per pull request: 1.86
Merged pull request: 20
Bot issues: 0
Bot pull requests: 1

Past year issues: 1
Past year pull requests: 1
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 1
Past year pull request authors: 1
Past year average comments per issue: 0.0
Past year average comments per pull request: 0.0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/mislav/will_paginate

Top Issue Authors

  • FranciscoCG (2)
  • mislav (2)
  • JasonBarnabe (2)
  • gisborne (2)
  • elad-eyal (2)
  • thebravoman (1)
  • eucandre (1)
  • rbrigby (1)
  • lws68825 (1)
  • Halvanhelv (1)
  • DaniyalBasit (1)
  • nathany (1)
  • lustremedia (1)
  • juansecaro (1)
  • Davidslv (1)

Top Pull Request Authors

  • mislav (11)
  • orien (3)
  • olleolleolle (3)
  • thedayisntgray (2)
  • iaddict (2)
  • jcoleman (2)
  • terralab (1)
  • kvokka (1)
  • gmercier42 (1)
  • denniskis (1)
  • sayap (1)
  • dvdbng (1)
  • dhMuse (1)
  • jdelStrother (1)
  • hammad-Ikhlaq-7vals (1)

Top Issue Labels

  • unconfirmed (3)
  • bug (2)
  • todo (2)
  • invalid (1)

Top Pull Request Labels

  • unconfirmed (2)
  • dependencies (1)
  • todo (1)

Package metadata

gem.coop: will_paginate

will_paginate provides a simple API for performing paginated queries with Active Record and Sequel, and includes helpers for rendering pagination links in Rails, Sinatra, and Hanami web apps.

  • Homepage: https://github.com/mislav/will_paginate
  • Documentation: http://www.rubydoc.info/gems/will_paginate/
  • Licenses: MIT
  • Latest release: 4.0.1 (published about 2 years ago)
  • Last Synced: 2026-06-16T00:30:29.314Z (about 6 hours ago)
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 104,478,953 Total
  • Docker Downloads: 31,086,721
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.083%
    • Downloads: 0.25%
  • Maintainers (1)
ubuntu-23.10: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Licenses: mit
  • Latest release: 3.3.1-1 (published 4 months ago)
  • Last Synced: 2026-03-14T08:13:42.594Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.135%
    • Forks count: 0.221%
    • Stargazers count: 0.319%
rubygems.org: will_paginate

will_paginate provides a simple API for performing paginated queries with Active Record and Sequel, and includes helpers for rendering pagination links in Rails, Sinatra, and Hanami web apps.

  • Homepage: https://github.com/mislav/will_paginate
  • Documentation: http://www.rubydoc.info/gems/will_paginate/
  • Licenses: MIT
  • Latest release: 4.0.1 (published about 2 years ago)
  • Last Synced: 2026-06-15T23:13:53.727Z (about 7 hours ago)
  • Versions: 40
  • Dependent Packages: 503
  • Dependent Repositories: 72,883
  • Downloads: 104,477,273 Total
  • Docker Downloads: 31,086,721
  • Rankings:
    • Dependent packages count: 0.091%
    • Dependent repos count: 0.137%
    • Stargazers count: 0.205%
    • Downloads: 0.222%
    • Average: 0.376%
    • Forks count: 0.777%
    • Docker downloads count: 0.827%
  • Maintainers (1)
  • Advisories:
rubygems.org: mislav-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/mislav-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.10 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.829Z (2 days ago)
  • Versions: 11
  • Dependent Packages: 31
  • Dependent Repositories: 30
  • Downloads: 47,990 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent packages count: 0.758%
    • Dependent repos count: 4.494%
    • Average: 4.603%
    • Downloads: 16.825%
rubygems.org: hobo_will_paginate

will_paginate provides a simple API for performing paginated queries with Active Record, DataMapper and Sequel, and includes helpers for rendering pagination links in Rails, Sinatra and Merb web apps.

  • Homepage: https://github.com/mislav/will_paginate/wiki
  • Documentation: http://www.rubydoc.info/gems/hobo_will_paginate/
  • Licenses: mit
  • Latest release: 2.1.1 (published over 12 years ago)
  • Last Synced: 2026-06-14T02:03:05.838Z (2 days ago)
  • Versions: 2
  • Dependent Packages: 2
  • Dependent Repositories: 28
  • Downloads: 40,770 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent repos count: 4.628%
    • Dependent packages count: 5.179%
    • Average: 5.256%
    • Downloads: 15.536%
  • Maintainers (1)
gem.coop: mislav-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/mislav-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.10 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.265Z (2 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 47,990 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.321%
    • Downloads: 15.962%
gem.coop: hobo_will_paginate

will_paginate provides a simple API for performing paginated queries with Active Record, DataMapper and Sequel, and includes helpers for rendering pagination links in Rails, Sinatra and Merb web apps.

  • Homepage: https://github.com/mislav/will_paginate/wiki
  • Documentation: http://www.rubydoc.info/gems/hobo_will_paginate/
  • Licenses: mit
  • Latest release: 2.1.1 (published over 12 years ago)
  • Last Synced: 2026-06-14T02:03:00.217Z (2 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 40,770 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.686%
    • Downloads: 17.057%
  • Maintainers (1)
rubygems.org: agnostic-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in templates. This version is from agnostic branch. commit : e0b094f44cf39e704f9862c708b202d331604cf7

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/agnostic-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.0 (published over 16 years ago)
  • Last Synced: 2026-06-14T02:03:01.706Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 6
  • Downloads: 16,523 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent packages count: 3.985%
    • Dependent repos count: 9.125%
    • Average: 9.317%
    • Downloads: 32.536%
  • Maintainers (1)
gem.coop: agnostic-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in templates. This version is from agnostic branch. commit : e0b094f44cf39e704f9862c708b202d331604cf7

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/agnostic-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.0 (published over 16 years ago)
  • Last Synced: 2026-06-14T02:02:59.951Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16,523 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 15.121%
    • Downloads: 45.364%
  • Maintainers (1)
gem.coop: decisiv-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/decisiv-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.6 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.962Z (2 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,821 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 15.836%
    • Downloads: 47.507%
gem.coop: dweinand-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/dweinand-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.7 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.521Z (2 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,961 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 19.413%
    • Downloads: 58.239%
rubygems.org: Empact-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/Empact-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.15 (published over 15 years ago)
  • Last Synced: 2026-06-14T02:02:59.997Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,680 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent packages count: 15.577%
    • Average: 20.698%
    • Dependent repos count: 21.793%
    • Downloads: 65.183%
  • Maintainers (1)
rubygems.org: larsklevan-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/larsklevan-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.12 (published over 16 years ago)
  • Last Synced: 2026-06-14T02:02:58.665Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,459 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent packages count: 15.577%
    • Average: 20.732%
    • Dependent repos count: 21.793%
    • Downloads: 65.352%
  • Maintainers (1)
gem.coop: shingara-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/shingara-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.10 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:03.547Z (2 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,131 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 20.755%
    • Downloads: 62.266%
gem.coop: stilkov-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates. [Experimental: addition of prev/next rel navigation for XML rendering]

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/stilkov-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:58.648Z (2 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,107 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 20.804%
    • Downloads: 62.412%
rubygems.org: tism-will_paginate

Relase to use https://github.com/tism/will_paginate/commit/adea61b139285357d72ae61e97bb49d709c20bb9

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/tism-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.16 (published over 15 years ago)
  • Last Synced: 2026-06-14T02:02:59.822Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,115 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent packages count: 15.577%
    • Average: 20.978%
    • Dependent repos count: 21.793%
    • Downloads: 66.584%
  • Maintainers (1)
rubygems.org: elmer-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in web application templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/elmer-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.0 (published about 15 years ago)
  • Last Synced: 2026-06-14T02:03:01.951Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,095 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent packages count: 15.577%
    • Average: 21.152%
    • Dependent repos count: 21.793%
    • Downloads: 67.451%
  • Maintainers (1)
rubygems.org: jkaneacumen-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/jkaneacumen-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.12 (published about 16 years ago)
  • Last Synced: 2026-06-14T02:03:00.000Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,040 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent packages count: 15.577%
    • Average: 21.153%
    • Dependent repos count: 21.793%
    • Downloads: 67.456%
  • Maintainers (1)
rubygems.org: pb-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/pb-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.12 (published over 16 years ago)
  • Last Synced: 2026-06-14T02:02:59.687Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,003 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent packages count: 15.577%
    • Average: 21.207%
    • Dependent repos count: 21.793%
    • Downloads: 67.73%
  • Maintainers (1)
rubygems.org: svenaas-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/svenaas-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.2 (published almost 16 years ago)
  • Last Synced: 2026-06-14T02:03:01.406Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 4,943 Total
  • Rankings:
    • Stargazers count: 0.199%
    • Forks count: 0.738%
    • Dependent packages count: 15.577%
    • Average: 21.465%
    • Dependent repos count: 21.793%
    • Downloads: 69.02%
  • Maintainers (1)
gem.coop: Empact-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/Empact-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.15 (published over 15 years ago)
  • Last Synced: 2026-06-14T02:03:03.399Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,680 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 21.662%
    • Downloads: 64.987%
  • Maintainers (1)
gem.coop: larsklevan-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/larsklevan-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.12 (published over 16 years ago)
  • Last Synced: 2026-06-14T02:02:59.225Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,459 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 21.871%
    • Downloads: 65.614%
  • Maintainers (1)
rubygems.org: decisiv-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/decisiv-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.6 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.960Z (2 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,821 Total
  • Rankings:
    • Stargazers count: 0.162%
    • Forks count: 0.433%
    • Dependent packages count: 15.706%
    • Average: 22.1%
    • Dependent repos count: 46.782%
    • Downloads: 47.416%
gem.coop: tism-will_paginate

Relase to use https://github.com/tism/will_paginate/commit/adea61b139285357d72ae61e97bb49d709c20bb9

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/tism-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.16 (published over 15 years ago)
  • Last Synced: 2026-06-14T02:02:59.840Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,115 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 22.445%
    • Downloads: 67.335%
  • Maintainers (1)
gem.coop: elmer-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in web application templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/elmer-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.0 (published about 15 years ago)
  • Last Synced: 2026-06-14T02:03:02.009Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,095 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 22.546%
    • Downloads: 67.639%
  • Maintainers (1)
gem.coop: pb-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/pb-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.12 (published over 16 years ago)
  • Last Synced: 2026-06-14T02:03:00.775Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,003 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 22.789%
    • Downloads: 68.368%
  • Maintainers (1)
gem.coop: svenaas-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/svenaas-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.2 (published almost 16 years ago)
  • Last Synced: 2026-06-14T02:03:00.019Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,943 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 23.005%
    • Downloads: 69.016%
  • Maintainers (1)
rubygems.org: dweinand-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/dweinand-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.7 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:00.796Z (2 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,961 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 24.409%
    • Dependent repos count: 46.782%
    • Downloads: 58.953%
gem.coop: xzif-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/xzif-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.6 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:54.697Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,701 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 24.532%
    • Downloads: 73.595%
gem.coop: auxesis-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/auxesis-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.0 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.507Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,365 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 24.882%
    • Downloads: 74.646%
rubygems.org: stilkov-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates. [Experimental: addition of prev/next rel navigation for XML rendering]

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/stilkov-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.375Z (2 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,107 Total
  • Rankings:
    • Stargazers count: 0.162%
    • Forks count: 0.433%
    • Dependent packages count: 15.706%
    • Average: 25.131%
    • Dependent repos count: 46.782%
    • Downloads: 62.571%
rubygems.org: shingara-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/shingara-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.10 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:03.540Z (2 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,131 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 25.144%
    • Dependent repos count: 46.782%
    • Downloads: 62.626%
gem.coop: chrismuc-activerecord-jdbc-adapter

TODO

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/chrismuc-activerecord-jdbc-adapter/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.861Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,952 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 25.565%
    • Downloads: 76.695%
rubygems.org: chrismuc-activerecord-jdbc-adapter

TODO

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/chrismuc-activerecord-jdbc-adapter/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:00.786Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,952 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 26.223%
    • Dependent repos count: 46.782%
    • Downloads: 68.024%
gem.coop: jkaneacumen-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/jkaneacumen-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.12 (published about 16 years ago)
  • Last Synced: 2026-06-14T02:02:58.891Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,040 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.24%
    • Downloads: 78.719%
  • Maintainers (1)
gem.coop: gcirne-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/gcirne-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.705Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,935 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.341%
    • Downloads: 79.022%
gem.coop: gigpark-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/gigpark-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.11 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.712Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,834 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.645%
    • Downloads: 79.936%
gem.coop: kamal-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/kamal-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:00.537Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,976 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.736%
    • Downloads: 80.207%
gem.coop: jcnetdev-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/jcnetdev-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.21 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.558Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,812 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.836%
    • Downloads: 80.508%
gem.coop: oboxodo-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/oboxodo-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.5 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.963Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,793 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.943%
    • Downloads: 80.828%
gem.coop: gohanlon-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/gohanlon-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.3 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:12.968Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,758 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 27.037%
    • Downloads: 81.111%
gem.coop: fermion-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/fermion-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:05.836Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,817 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 27.196%
    • Downloads: 81.588%
gem.coop: myobie-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/myobie-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.5 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:03.691Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,721 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 27.244%
    • Downloads: 81.732%
gem.coop: staugaard-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/staugaard-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.3 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.961Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,686 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 27.342%
    • Downloads: 82.027%
gem.coop: mknittig-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/mknittig-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.0 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:54.622Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,654 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 27.476%
    • Downloads: 82.427%
gem.coop: pcg79-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/pcg79-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.2 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.881Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,610 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 27.645%
    • Downloads: 82.936%
rubygems.org: auxesis-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/auxesis-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.0 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:54.645Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,365 Total
  • Rankings:
    • Stargazers count: 0.162%
    • Forks count: 0.433%
    • Dependent packages count: 15.706%
    • Average: 27.697%
    • Dependent repos count: 46.782%
    • Downloads: 75.4%
gem.coop: chrismuc-after_commit

Threadsafe after_commit callbacks for ActiveRecord models.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/chrismuc-after_commit/
  • Licenses: mit
  • Latest release: 0.9.0 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.961Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,979 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 28.275%
    • Downloads: 84.825%
gem.coop: darkreaper-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/darkreaper-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.2 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.709Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,960 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 28.284%
    • Downloads: 84.852%
rubygems.org: chrismuc-after_commit

Threadsafe after_commit callbacks for ActiveRecord models.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/chrismuc-after_commit/
  • Licenses: mit
  • Latest release: 0.9.0 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:00.341Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,979 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 28.315%
    • Dependent repos count: 46.782%
    • Downloads: 78.483%
rubygems.org: darkreaper-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/darkreaper-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.2 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.696Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,960 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 28.542%
    • Dependent repos count: 46.782%
    • Downloads: 79.618%
rubygems.org: gigpark-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/gigpark-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.11 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.804Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,834 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 28.643%
    • Dependent repos count: 46.782%
    • Downloads: 80.124%
rubygems.org: gcirne-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/gcirne-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:02.067Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,935 Total
  • Rankings:
    • Stargazers count: 0.162%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 28.645%
    • Dependent repos count: 46.782%
    • Downloads: 80.14%
rubygems.org: fermion-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/fermion-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.951Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,817 Total
  • Rankings:
    • Stargazers count: 0.162%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 28.712%
    • Dependent repos count: 46.782%
    • Downloads: 80.473%
rubygems.org: xzif-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/xzif-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.6 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:02.272Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,701 Total
  • Rankings:
    • Stargazers count: 0.162%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 28.729%
    • Dependent repos count: 46.782%
    • Downloads: 80.56%
rubygems.org: gohanlon-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/gohanlon-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.3 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:54.650Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,758 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 28.896%
    • Dependent repos count: 46.782%
    • Downloads: 81.388%
rubygems.org: jcnetdev-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/jcnetdev-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.21 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:01.493Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,812 Total
  • Rankings:
    • Stargazers count: 0.167%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 29.0%
    • Dependent repos count: 46.782%
    • Downloads: 81.907%
rubygems.org: staugaard-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/staugaard-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.3 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.510Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,686 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 29.082%
    • Dependent repos count: 46.782%
    • Downloads: 82.318%
rubygems.org: kamal-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/kamal-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.8 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:00.541Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,976 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 29.109%
    • Dependent repos count: 46.782%
    • Downloads: 82.453%
rubygems.org: oboxodo-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/oboxodo-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.5 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:03.735Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,793 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 29.207%
    • Dependent repos count: 46.782%
    • Downloads: 82.943%
rubygems.org: myobie-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/myobie-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.5 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:53.725Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,721 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 29.221%
    • Dependent repos count: 46.782%
    • Downloads: 83.01%
rubygems.org: mknittig-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for pagination and rendering of page links in templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/mknittig-will_paginate/
  • Licenses: mit
  • Latest release: 3.0.0 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:02:59.827Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,654 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 29.25%
    • Dependent repos count: 46.782%
    • Downloads: 83.155%
rubygems.org: pcg79-will_paginate

The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates.

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/pcg79-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.2 (published almost 12 years ago)
  • Last Synced: 2026-06-14T02:03:03.629Z (2 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,610 Total
  • Rankings:
    • Stargazers count: 0.168%
    • Forks count: 0.437%
    • Dependent packages count: 15.706%
    • Average: 29.411%
    • Dependent repos count: 46.782%
    • Downloads: 83.961%
ubuntu-20.04: ruby-will-paginate

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.1.6-1 (published 4 months ago)
  • Last Synced: 2026-03-13T14:25:54.823Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-10: ruby-will-paginate

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: https://packages.debian.org/buster/ruby-will-paginate
  • Licenses: mit
  • Latest release: 3.1.6-1 (published 4 months ago)
  • Last Synced: 2026-03-14T03:02:29.545Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-24.04: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.3.1-1 (published 4 months ago)
  • Last Synced: 2026-03-06T16:43:21.902Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
ubuntu-22.04: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.3.0-1 (published 4 months ago)
  • Last Synced: 2026-03-13T13:37:29.380Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-11: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Documentation: https://packages.debian.org/bullseye/ruby-will-paginate
  • Licenses:
  • Latest release: 3.3.0-1 (published 4 months ago)
  • Last Synced: 2026-03-13T08:29:56.957Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-23.04: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.3.1-1 (published 4 months ago)
  • Last Synced: 2026-03-11T19:18:36.375Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
gentoo-portage: dev-ruby/will_paginate

Most awesome pagination solution for Ruby

  • Homepage: https://github.com/mislav/will_paginate/
  • Documentation: https://packages.gentoo.org/packages/dev-ruby/will_paginate
  • Licenses: MIT
  • Latest release: 4.0.1 (published about 2 months ago)
  • Last Synced: 2026-05-27T02:52:22.824Z (20 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
pkgsrc-netbsd-x86_64-10.1-all: textproc/ruby-will-paginate

Pagination for views of model queries

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Documentation: https://pkgsrc.se/textproc/ruby-will-paginate
  • Licenses: mit
  • Latest release: 4.0.1 (published 2 months ago)
  • Last Synced: 2026-05-27T10:25:54.731Z (20 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-24.10: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.3.1-1 (published 4 months ago)
  • Last Synced: 2026-03-09T18:23:30.752Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-12: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Documentation: https://packages.debian.org/bookworm/ruby-will-paginate
  • Licenses:
  • Latest release: 3.3.1-1 (published 4 months ago)
  • Last Synced: 2026-03-14T00:38:15.725Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-13: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Documentation: https://packages.debian.org/trixie/ruby-will-paginate
  • Licenses:
  • Latest release: 3.3.1-1 (published 4 months ago)
  • Last Synced: 2026-03-14T19:14:55.678Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%

Dependencies

Gemfile rubygems
  • mysql2 ~> 0.5.2 development
  • pg ~> 1.2 development
  • mocha ~> 0.9.8
  • rspec ~> 2.99
  • sqlite3 ~> 1.4.0
.github/workflows/test.yml actions
  • actions/checkout v3 composite
  • ruby/setup-ruby v1 composite
  • mongo 4.2 docker
  • mysql 5.7 docker
  • postgres 11 docker
docker-compose.yml docker
  • mongo 4.2
  • mysql 5.7
  • postgres 11
Brewfile homebrew
  • mysql@5.7,restart_service:true *
  • postgresql,restart_service:true *
will_paginate.gemspec rubygems

Score: 32.39280834838967