I get this error when i did pagination (will_paginate) + rails 4. really dont understand what went wrong
gem file
gem 'will_paginate', '~> 3.0'
here is the controller
@users = User.where.not(:name => "admin").all
@user_paginate = @users.paginate(:page => params[:page], :per_page => 3)
view
<%= will_paginate @user_paginate %>
application controller i did
require 'will_paginate/array'
model relations
User has_many :listings
Listing belongs_to :user
any help will be appreciated thanks