Skip to content

Instantly share code, notes, and snippets.

/ruby.rb Secret

Created October 19, 2016 13:06
Show Gist options
  • Save anonymous/c6a68ec0e1e1e4786f9375e8afbd49c2 to your computer and use it in GitHub Desktop.
Save anonymous/c6a68ec0e1e1e4786f9375e8afbd49c2 to your computer and use it in GitHub Desktop.
def get_namespace_id(name)
nslist = Gitlab.namespaces
nslist.each { |ns|
if ns.path == name then
return ns.id
end
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment