-
Notifications
You must be signed in to change notification settings - Fork 864
Installation
Mislav Marohnić edited this page Mar 3, 2020
·
8 revisions
To install will_paginate in Rails 3+ or other frameworks:
## Gemfile for Rails 3+, Sinatra, or Merb
gem 'will_paginate', '~> 3.3.0'
Then run bundle install
. It will automatically hook into Rails or Merb on application boot.
A Sinatra app needs a couple of extra requires:
## Sinatra app:
require 'will_paginate'
require 'will_paginate/active_record' # or data_mapper/sequel
For Padrino apps you need to manually register the Sinatra extension:
## app/app.rb
register WillPaginate::Sinatra
## config/boot.rb
Padrino.before_load do
require 'will_paginate/view_helpers/sinatra'
require 'will_paginate/data_mapper'
end
Padrino.after_load do
DataMapper.finalize
end
Alternatively, you can avoid manual will_paginate install by using Padrino recipes:
$ padrino g plugin will_paginate
will_paginate 3.0+ will not work on Rails 2. In an older version of Rails, you'll have to use will_paginate 2.3:
## Rails 2.1 - 2.3: environment.rb
Rails::Initializer.run do |config|
config.gem 'will_paginate', :version => '~> 2.3.17'
end
Then run rake gems:install
.
For Rails 2.0 or older, a simple require will suffice:
## Rails 1.2 - 2.0: environment.rb
require 'will_paginate'
- Installation instructions
- API documentation
- Differences between v2.3 - v3.0
- Troubleshooting or Report bugs
- Simple search functionality
- Translating output (i18n)
- Browse the source code
- See the recent commits