Helpers.split_slug
You're seeing just the function
split_slug
, go back to Helpers module for more information.
Specs
split_slug/1: splits apart the username and repo from a git slug returning discrete stings.
Examples
iex(6)> {:ok, org, repo} = Helpers.split_slug("kitplummer/xmpprails")
{:ok, "kitplummer", "xmpprails"}
iex(7)> org
"kitplummer"
iex(8)> repo
"xmpprails"