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 14 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: 18 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: 25 days ago

Total issues: 78
Total pull requests: 58
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: 41
Average comments per issue: 3.24
Average comments per pull request: 1.9
Merged pull request: 20
Bot issues: 0
Bot pull requests: 1

Past year issues: 2
Past year pull requests: 3
Past year average time to close issues: N/A
Past year average time to close pull requests: 5 days
Past year issue authors: 2
Past year pull request authors: 2
Past year average comments per issue: 0.0
Past year average comments per pull request: 0.33
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)
  • ccutrer (1)
  • terralab (1)
  • kvokka (1)
  • gmercier42 (1)
  • denniskis (1)
  • sayap (1)
  • dvdbng (1)
  • dhMuse (1)
  • jdelStrother (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 almost 2 years ago)
  • Last Synced: 2026-04-27T07:01:21.535Z (3 days ago)
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 102,758,247 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 3 months ago)
  • Last Synced: 2026-03-14T08:13:42.594Z (about 2 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 almost 2 years ago)
  • Last Synced: 2026-04-29T03:19:13.225Z (1 day ago)
  • Versions: 40
  • Dependent Packages: 503
  • Dependent Repositories: 72,883
  • Downloads: 102,847,114 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:26.125Z (16 days ago)
  • Versions: 11
  • Dependent Packages: 31
  • Dependent Repositories: 30
  • Downloads: 47,083 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-04-14T21:01:19.229Z (16 days ago)
  • Versions: 2
  • Dependent Packages: 2
  • Dependent Repositories: 28
  • Downloads: 40,671 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:03.132Z (16 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 47,083 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-04-14T21:01:06.115Z (16 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 40,671 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-04-14T21:01:04.620Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 6
  • Downloads: 16,434 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-04-14T21:00:58.221Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16,434 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:37.375Z (16 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,746 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:00:59.175Z (16 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,909 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-04-14T21:01:19.958Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,628 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 about 16 years ago)
  • Last Synced: 2026-04-14T21:00:54.286Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,422 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:04.422Z (16 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,090 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:02.632Z (16 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,057 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 about 15 years ago)
  • Last Synced: 2026-04-14T21:01:00.459Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,085 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 almost 15 years ago)
  • Last Synced: 2026-04-14T21:01:03.461Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,066 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 almost 16 years ago)
  • Last Synced: 2026-04-14T21:01:04.106Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,012 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 about 16 years ago)
  • Last Synced: 2026-04-14T21:01:02.018Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 4,974 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-04-14T21:01:05.445Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 4,909 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-04-14T21:01:03.745Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,628 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 about 16 years ago)
  • Last Synced: 2026-04-14T21:01:36.255Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,422 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:03.160Z (16 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,746 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 about 15 years ago)
  • Last Synced: 2026-04-14T21:01:00.455Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,085 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 almost 15 years ago)
  • Last Synced: 2026-04-14T21:01:03.544Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,066 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 about 16 years ago)
  • Last Synced: 2026-04-14T21:01:02.044Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,974 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-04-14T21:01:18.198Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,909 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:29.820Z (16 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,909 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:03.565Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,645 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:05.360Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,331 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:17.250Z (16 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,057 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:04.243Z (16 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,090 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:04.735Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,928 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:00:59.233Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,928 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 almost 16 years ago)
  • Last Synced: 2026-04-14T21:01:03.754Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,012 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:16.820Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,905 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:00.203Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,804 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:05.228Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,923 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:00.244Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,782 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:05.134Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,766 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:00:58.415Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,730 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:02.046Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,792 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:00.638Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,690 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:05.423Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,658 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:03.530Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,624 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:00:57.437Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,584 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:02.664Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,331 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:02.201Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,949 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:04.740Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,927 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:02.189Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,949 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:04.641Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,927 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:00:57.456Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,804 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:02.022Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,905 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:33.303Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,792 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:04.993Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,645 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:04.414Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,730 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:00:57.509Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,782 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:05.468Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,658 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:04.472Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,923 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:04.684Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,766 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:01.316Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,690 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:01:01.346Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,624 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 over 11 years ago)
  • Last Synced: 2026-04-14T21:00:59.227Z (16 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,584 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-24.10: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.3.1-1 (published 3 months ago)
  • Last Synced: 2026-03-09T18:23:30.752Z (about 2 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 3 months ago)
  • Last Synced: 2026-03-14T00:38:15.725Z (about 2 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 3 months ago)
  • Last Synced: 2026-03-14T19:14:55.678Z (about 2 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 3 months ago)
  • Last Synced: 2026-03-11T19:18:36.375Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-22.04: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.3.0-1 (published 3 months ago)
  • Last Synced: 2026-03-13T13:37:29.380Z (about 2 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 3 months ago)
  • Last Synced: 2026-03-14T03:02:29.545Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-20.04: ruby-will-paginate

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.1.6-1 (published 3 months ago)
  • Last Synced: 2026-03-13T14:25:54.823Z (about 2 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 3 months ago)
  • Last Synced: 2026-03-06T16:43:21.902Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
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 3 months ago)
  • Last Synced: 2026-03-13T08:29:56.957Z (about 2 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.38073038117485