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 21 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: about 23 hours 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: 11 days ago

Total issues: 76
Total pull requests: 55
Average time to close issues: over 3 years
Average time to close pull requests: over 2 years
Total issue authors: 72
Total pull request authors: 42
Average comments per issue: 3.36
Average comments per pull request: 1.96
Merged pull request: 19
Bot issues: 0
Bot pull requests: 1

Past year issues: 2
Past year pull requests: 3
Past year average time to close issues: about 2 hours
Past year average time to close pull requests: 18 days
Past year issue authors: 2
Past year pull request authors: 3
Past year average comments per issue: 0.0
Past year average comments per pull request: 0.67
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: 2025-12-07T21:02:14.988Z (1 day ago)
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 98,190,514 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)
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: 2025-12-07T15:30:59.844Z (1 day ago)
  • Versions: 40
  • Dependent Packages: 503
  • Dependent Repositories: 72,883
  • Downloads: 98,188,047 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: 2025-12-06T06:15:31.294Z (3 days ago)
  • Versions: 11
  • Dependent Packages: 31
  • Dependent Repositories: 30
  • Downloads: 45,283 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 almost 12 years ago)
  • Last Synced: 2025-12-06T06:16:13.279Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 2
  • Dependent Repositories: 28
  • Downloads: 40,379 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: 2025-12-06T06:16:10.502Z (3 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 45,283 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 almost 12 years ago)
  • Last Synced: 2025-12-06T06:15:38.500Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 40,379 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 about 16 years ago)
  • Last Synced: 2025-12-06T06:16:11.256Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 6
  • Downloads: 16,192 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 about 16 years ago)
  • Last Synced: 2025-12-06T06:16:14.818Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16,192 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: 2025-12-06T06:15:56.439Z (3 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,643 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: 2025-12-06T06:16:12.486Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,810 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 about 15 years ago)
  • Last Synced: 2025-12-06T06:16:15.572Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,515 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 almost 16 years ago)
  • Last Synced: 2025-12-06T06:16:13.161Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,345 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: 2025-12-06T06:16:07.406Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,998 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: 2025-12-06T06:16:04.935Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,967 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 20.804%
    • Downloads: 62.412%
rubygems.org: tism-will_paginate

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

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/tism-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.16 (published over 14 years ago)
  • Last Synced: 2025-12-06T06:15:47.269Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,031 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 over 14 years ago)
  • Last Synced: 2025-12-06T06:16:09.257Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 5,009 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 over 15 years ago)
  • Last Synced: 2025-12-06T06:15:31.250Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 4,935 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 almost 16 years ago)
  • Last Synced: 2025-12-06T06:15:48.777Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 4,897 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: 2025-12-06T06:15:32.862Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 4,830 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 about 15 years ago)
  • Last Synced: 2025-12-06T06:16:12.018Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,515 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 almost 16 years ago)
  • Last Synced: 2025-12-06T06:15:52.972Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,345 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: 2025-12-06T06:15:56.491Z (3 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,643 Total
  • Rankings:
    • Stargazers count: 0.162%
    • Forks count: 0.433%
    • Dependent packages count: 15.706%
    • Average: 22.1%
    • Dependent repos count: 46.782%
    • Downloads: 47.416%
gem.coop: tism-will_paginate

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

  • Homepage: http://github.com/mislav/will_paginate/wikis
  • Documentation: http://www.rubydoc.info/gems/tism-will_paginate/
  • Licenses: mit
  • Latest release: 2.3.16 (published over 14 years ago)
  • Last Synced: 2025-12-06T06:15:45.342Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,031 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 over 14 years ago)
  • Last Synced: 2025-12-06T06:16:09.165Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,009 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 almost 16 years ago)
  • Last Synced: 2025-12-06T06:16:07.414Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,897 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: 2025-12-06T06:16:11.573Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,830 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: 2025-12-06T06:16:15.167Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,810 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: 2025-12-06T06:16:13.213Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,486 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: 2025-12-06T06:16:04.031Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,275 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: 2025-12-06T06:15:32.165Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,967 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: 2025-12-06T06:16:14.074Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,998 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: 2025-12-06T06:15:33.879Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,879 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: 2025-12-06T06:15:42.887Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,879 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 over 15 years ago)
  • Last Synced: 2025-12-06T06:15:46.606Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,935 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: 2025-12-06T06:15:29.603Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,847 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: 2025-12-06T06:15:26.935Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,756 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: 2025-12-06T06:15:26.859Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,790 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: 2025-12-06T06:15:31.358Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,729 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: 2025-12-06T06:15:26.121Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,706 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: 2025-12-06T06:16:00.159Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,679 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: 2025-12-06T06:16:01.194Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,747 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: 2025-12-06T06:16:10.956Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,633 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: 2025-12-06T06:15:27.228Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,601 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: 2025-12-06T06:15:34.464Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,570 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: 2025-12-06T06:15:54.455Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,540 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: 2025-12-06T06:15:40.160Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,275 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: 2025-12-06T06:16:04.665Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,904 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: 2025-12-06T06:15:24.767Z (3 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: 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: 2025-12-06T06:16:01.592Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,904 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: 2025-12-06T06:15:53.700Z (3 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: 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: 2025-12-06T06:16:07.421Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,756 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: 2025-12-06T06:15:44.650Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,847 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: 2025-12-06T06:15:25.964Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,747 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: 2025-12-06T06:16:23.862Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,486 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: 2025-12-06T06:15:55.337Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,679 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: 2025-12-06T06:16:15.489Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,729 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: 2025-12-06T06:15:42.582Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,601 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: 2025-12-06T06:15:26.855Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,790 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: 2025-12-06T06:15:24.750Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,706 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: 2025-12-06T06:16:17.772Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,633 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: 2025-12-06T06:16:15.864Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,570 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: 2025-12-06T06:15:25.784Z (3 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,540 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%

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 *

Score: 32.34640087296003