Skip to content

Instantly share code, notes, and snippets.

@Techbrunch
Created June 26, 2016 21:15
Show Gist options
  • Save Techbrunch/3e93fe428fefdec7d57d807cbe64b73d to your computer and use it in GitHub Desktop.
Save Techbrunch/3e93fe428fefdec7d57d807cbe64b73d to your computer and use it in GitHub Desktop.
List repositories of a Github organization
require 'octokit'
Octokit.auto_paginate = true
Octokit.org_repositories('github').each do | repo |
puts repo.name
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment