class Github::PageIterator

def get_page(page_number)


Returns the result for a specific page.
def get_page(page_number)
  # Find URI that we can work with, if we cannot get the first or the
  # last page URI then there is only one page.
  page_uri = first_page_uri || last_page_uri
  return nil unless page_uri
  perform_request(page_uri, page_number)
end