Skip to content

Instantly share code, notes, and snippets.

@bradpauly
Created February 24, 2023 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradpauly/e9916e246acfefea2bd5b4f55e6e73cd to your computer and use it in GitHub Desktop.
Save bradpauly/e9916e246acfefea2bd5b4f55e6e73cd to your computer and use it in GitHub Desktop.
# Controller
recipes = Recipe.all
@pager = Pager.new(results: recipes, rows_per_page: 10, page: 1)
# ERB template
<% @pager.rows.each do |row| %>
<%= row.name %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment