class Service
include Mongoid::Document
include Mongoid::Search
include Mongoid::Pagination
field :name, type: String
end
My controller
@services = Service.where(active: true).per_page(10)
the gem mongoid-pagination
The index.html.erb
<% paginate @services %>
The problem
undefined method `total_pages' for
The documents https://github.com/ajsharp/mongoid-pagination
I need to solve the problem with paginate.