Skip to content

Instantly share code, notes, and snippets.

@pyro2927
Created October 24, 2013 21:14
Show Gist options
  • Save pyro2927/7145107 to your computer and use it in GitHub Desktop.
Save pyro2927/7145107 to your computer and use it in GitHub Desktop.
Figure out who has the lowest Github ID in your organization!
require "github_api"
Github.new.orgs.members.list("ORG_NAME").body.sort_by! {|u| u.id} .first.login
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment