I'm upgrading from Rails 4.0 to 4.1.8 and I'm getting this error "undefined method `paginate' for nil:NilClass" I updated my will_paginate gem to 3.0.7 and my will_paginate-bootstrap gem to 1.0.1 The error is in the index of my pins_controller.rb file.
require 'will_paginate/array'
# GET /pins
# GET /pins.json
def index
@pins = Pin.search(params[:search])
@pins = @pins.paginate(:page => params[:page], :per_page => 50)
respond_to do |format|
format.html # index.html.erb
format.json { render json: @pins }
# format.js
end
end
and in my view:
<%= will_paginate @collection, renderer: BootstrapPagination::Rails %>
This all worked perfectly before upgrading and I rechecked all of the documentation to see if anything has changed about these settings above.
It turns out that I had two things that needed to be changed. The main issue was that I was assigning @pins twice. I had to first change the search code in my pins.rb to:
Then I was receiving an error "Undefined method total_pages", so I changed my pins_controller.rb to: