Skip to content

Instantly share code, notes, and snippets.

@noahpryor
Created April 4, 2014 05:24
Show Gist options
  • Save noahpryor/9968643 to your computer and use it in GitHub Desktop.
Save noahpryor/9968643 to your computer and use it in GitHub Desktop.
pagination
def pagination_url
end
def pages(pages=10,start=1)
end_page=start+pages
(start..pages).map {|page| url+"/pages/#{page}" }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment