Rails 3.2.8 im using kaminari to do pagination, but i keep getting error: undefined method `current_page' for #
in posts_controller.rb
def index
@posts = Post.order(:created_at).page(params[:page])
end
in views/posts/index.html.erb
<%= paginate @posts %>
what could be the problem?