Skip to content

Instantly share code, notes, and snippets.

@joshuacronemeyer
Created May 28, 2012 16:39
Show Gist options
  • Save joshuacronemeyer/2820035 to your computer and use it in GitHub Desktop.
Save joshuacronemeyer/2820035 to your computer and use it in GitHub Desktop.
Sinatra and Kaminari
<% #erb file %>
<%= link_to_next_page @pages, 'Next Page' %>
<% #or %>
<%= paginate @pages %>
#Gemfile
gem 'kaminari'
gem 'padrino-helpers'
#myapp.rb
require 'kaminari/sinatra'
helpers Kaminari::Helpers::SinatraHelpers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment