I have used Elastic Search to fetch the data and am trying to use Pagination gem to toggle between pages. But i am currently facing an issue in
<%= will_paginate @data %>
i am getting an error
NoMethodError - undefined method `total_pages' for #<Array:0x007fdcfbd3f128>
since @data is an array instead of an Active Record since the data was fetched from Elastic Search
Is there anyway to specify the total pages so that i will still be able to use the gem.