Skip to content

Instantly share code, notes, and snippets.

@BitOfUniverse
Created March 28, 2019 12:07
Show Gist options
  • Save BitOfUniverse/9cced47091e4aaca98eec4c74855fa62 to your computer and use it in GitHub Desktop.
Save BitOfUniverse/9cced47091e4aaca98eec4c74855fa62 to your computer and use it in GitHub Desktop.
Ruby return multiple values
status, reason = send def authorize
response = do_request
if response.success?
return :ok, response.body
else
return :error, response.error
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment