I have installed the will_paginate-bootstrap gem to use bootstrap style pagination. I have this in my view:
<%= will_paginate @mylist, renderer: BootstrapPagination::Rails %>
but it returns this error
uninitialized constant ActionView::CompiledTemplates::BootstrapPagination
If you have successfully bundle all the gems then it should work like this.
<%= will_paginate @mylist, :renderer => BootstrapPagination::Rails %>
Please make sure you have restarted the server after installing the gem.