My controller code is
@search = Sunspot.search(Product) do
fulltext params[:search]
paginate(page: params[:page], per_page: 1)
end
@search_products = @search.results
It gives me an error
undefined method `paginate' for
For pagination I use kaminari gem. It works fine just in case with sunspot it gives an error