Paginar sem uma gema Próximo, Anterior, botões para Name.order (: id) .limit (10) .offset (0)

Estou procurando uma solução para o meu problema há mais de uma semana. Tenho uma tarefa em que perdi 10 pts devido a nenhuma funcionalidade anterior / anterior e fiquei sem tempo. Ainda quero descobrir isso.

Criei um site de página única curta comrails generate scaffold Ripple name:string message:text url:string que mostra um índice das 10 postagens mais recentes exibidas (nome, mensagem, created_on, link_to "show"). Ainda tenho que criar um próximo, anterior, mais novo, mais antigo, links para mostrar os próximos 10, anteriores 10 .... resultados. Meu código

app\controllers\ripple_controller.rb

class RipplesController < ApplicationController  
  before_action :set_ripple, only: [:show, :update]  
  before_action :restrict_destroy_edit, only: [:edit, :destroy]   
  before_filter :set_page   
  helper_method :link_name_to_url, :next_button, :previous_button, :newest_button, :oldest_button, :is_next_page_available, :is_previous_page_available

  RIPPLES_PER_PAGE = 10

  def index   
    @ripples = Ripple.order(:id).limit(RIPPLES_PER_PAGE).offset(@page * RIPPLES_PER_PAGE) 
  end
  #All my show, new, destroy, edit, create ....

  def next_button

  end

  def previous_button

  end

  def newest_button

  end

  def oldest_button

  end

  def is_next_page_available?

  end

  def is_previous_page_available?

  end

  def set_page 
    @page = 5 
  end
private
...

\app\views\ripples.html.erb

<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>Message</th>
      <th>Posted</th>
      <th>Show Ripple</th>
    </tr>
  </thead>

  <tbody>
    <% @ripples.each do |ripple| %>
      <tr>
        <td><%= link_name_to_url ripple %></td>
        <td><%= truncate(ripple.message, length: 50) %></td>
        <td><%= ripple.created_at.strftime("%B %d, %Y %l:%M %P") %></td>
        <td><%= button_to 'Show', ripple, :method => "get" %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<div id = "nav">
  <button><%= link_to 'Newest' %></button>
  <button><%= link_to 'Previous 10 Ripples' %></button>
  <button><%= link_to "Next 10 Ripples" %></button>
  <button><%= link_to 'Oldest' %></button>
  <button><%= link_to 'New Ripple', new_ripple_path, class: "button", method: :get %></button>
</div>

E eu tentei chamar métodos no Model, mas continuo recebendoundefined method "next" for #<Class:0xb4eabd0c> erro no próximo e no anterior.

app\models\ripple.rb

class Ripple < ActiveRecord::Base
  default_scope -> {order(created_at: :desc)}
  validates :name, :message, presence: true
  validates :url, allow_blank: true, format: {
  with: URI::regexp(%w(http https)),
      message: "Must be a url starting with http:// or https://"
  }

  def next
    Ripple.order(:id).limit(10).offset((@page - 1) * 10)
  end

  def previous
    Ripple.order(:id).limit(10).offset((@page + 1) * 10)
  end
end

Como eu implementaria next e previous usando o order (). Limit (). Offset e talvez use@page para acompanhar onde estou no ActiveRecord. Talvez algo como

def next_button
  @page -= 1
end

que eu posso chamar no índice"<%= link_to Next 10" next_button %> de qualquer maneira, estou sem idéias que possam funcionar.

Obrigado por qualquer ajuda.

questionAnswers(2)

yourAnswerToTheQuestion