Skip to content

Instantly share code, notes, and snippets.

@bradpauly
Created February 24, 2023 18:37
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/623c0ba70cfb047e41cac3bf338bf444 to your computer and use it in GitHub Desktop.
Save bradpauly/623c0ba70cfb047e41cac3bf338bf444 to your computer and use it in GitHub Desktop.
> rows_per_page = 10
=> 10
> total_rows = 33
=> 33
> total_rows/rows_per_page
=> 3
> total_rows/rows_per_page.to_f
=> 3.3
> (total_rows/rows_per_page.to_f).ceil
=> 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment