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 19 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: 3 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: 4 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)
  • todo (2)
  • bug (2)
  • invalid (1)

Top Pull Request Labels

  • unconfirmed (2)
  • todo (1)
  • dependencies (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 over 1 year ago)
  • Last Synced: 2026-03-01T00:01:14.555Z (3 days ago)
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 100,667,905 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 18 days ago)
  • Last Synced: 2026-02-13T18:35:45.811Z (18 days 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 over 1 year ago)
  • Last Synced: 2026-03-01T12:32:18.517Z (2 days ago)
  • Versions: 40
  • Dependent Packages: 503
  • Dependent Repositories: 72,883
  • Downloads: 100,673,496 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-02-27T23:02:12.674Z (4 days ago)
  • Versions: 11
  • Dependent Packages: 31
  • Dependent Repositories: 30
  • Downloads: 46,386 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 about 12 years ago)
  • Last Synced: 2026-02-27T23:02:10.358Z (4 days ago)
  • Versions: 2
  • Dependent Packages: 2
  • Dependent Repositories: 28
  • Downloads: 40,475 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-02-27T23:02:12.000Z (4 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 46,386 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 about 12 years ago)
  • Last Synced: 2026-02-27T23:02:10.294Z (4 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 40,475 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-02-27T23:02:12.284Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 6
  • Downloads: 16,332 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-02-27T23:02:10.545Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16,332 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-02-27T23:02:11.557Z (4 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,705 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-02-27T23:02:11.741Z (4 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,869 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-02-27T23:02:10.148Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,581 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-02-27T23:02:15.686Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,390 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-02-27T23:02:17.245Z (4 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,059 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-02-27T23:02:11.006Z (4 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,024 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 almost 15 years ago)
  • Last Synced: 2026-02-27T23:02:14.675Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,061 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-02-27T23:02:10.983Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,037 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-02-27T23:02:12.967Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 4,975 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-02-27T23:02:10.677Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 4,945 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 over 15 years ago)
  • Last Synced: 2026-02-27T23:02:16.444Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 4,876 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-02-27T23:02:16.768Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,581 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-02-27T23:02:12.414Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,390 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-02-27T23:02:13.395Z (4 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,705 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 almost 15 years ago)
  • Last Synced: 2026-02-27T23:02:15.865Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,061 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-02-27T23:02:16.900Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,037 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-02-27T23:02:11.378Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,945 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 over 15 years ago)
  • Last Synced: 2026-02-27T23:02:16.424Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,876 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-02-27T23:02:11.115Z (4 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,869 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-02-27T23:02:14.885Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,607 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-02-27T23:02:13.184Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,298 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-02-27T23:02:10.928Z (4 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,024 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-02-27T23:02:17.149Z (4 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,059 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-02-27T23:02:13.792Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,900 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-02-27T23:02:14.762Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,900 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-02-27T23:02:13.906Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,975 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-02-27T23:02:09.043Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,878 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-02-27T23:02:15.176Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,784 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-02-27T23:02:16.510Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,870 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-02-27T23:02:09.215Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,759 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-02-27T23:02:12.973Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,738 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-02-27T23:02:15.326Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,704 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-02-27T23:02:15.194Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,770 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-02-27T23:02:10.236Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,663 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-02-27T23:02:14.596Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,632 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-02-27T23:02:10.789Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,602 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-02-27T23:02:16.791Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,565 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-02-27T23:02:08.915Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,298 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-02-27T23:02:14.410Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,924 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-02-27T23:02:15.774Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,902 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-02-27T23:02:14.385Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,924 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-02-27T23:02:09.716Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,902 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-02-27T23:02:15.608Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,784 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-02-27T23:02:08.730Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,878 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-02-27T23:02:14.838Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,770 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-02-27T23:02:09.905Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,607 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-02-27T23:02:14.729Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,704 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-02-27T23:02:12.829Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,759 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-02-27T23:02:16.058Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,632 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-02-27T23:02:12.705Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,870 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-02-27T23:02:12.827Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,738 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-02-27T23:02:11.703Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,663 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-02-27T23:02:11.887Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,602 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-02-27T23:02:13.046Z (4 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,565 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%
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 19 days ago)
  • Last Synced: 2026-02-12T23:44:15.996Z (19 days 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 19 days ago)
  • Last Synced: 2026-02-13T13:20:51.739Z (18 days 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 18 days ago)
  • Last Synced: 2026-02-13T13:28:40.683Z (18 days 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 20 days ago)
  • Last Synced: 2026-02-13T04:27:01.104Z (19 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 22 days ago)
  • Last Synced: 2026-02-09T17:33:04.500Z (22 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
ubuntu-23.04: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.3.1-1 (published 21 days ago)
  • Last Synced: 2026-02-11T06:52:36.795Z (21 days 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 19 days ago)
  • Last Synced: 2026-02-13T07:25:36.966Z (19 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.04: ruby-will-paginate

  • Homepage: https://github.com/mislav/will_paginate/wikis
  • Licenses:
  • Latest release: 3.3.1-1 (published 25 days ago)
  • Last Synced: 2026-02-06T16:17:00.697Z (25 days 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 21 days ago)
  • Last Synced: 2026-02-13T08:26:15.416Z (18 days 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.36539389823737