I have installed the last version of will_paginate, and I am trying to use it at my view like this:
@courses = Course.paginate(:page => params[:page])
will_paginate @courses
but, I get nothing in the view! any idea ??
the following conditions are met:
>> defined? WillPaginate
>> ActiveRecord::Base.respond_to? :paginate
is there something I am missing ??