Skip to content

Instantly share code, notes, and snippets.

@skwp
Last active December 20, 2015 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skwp/6184865 to your computer and use it in GitHub Desktop.
Save skwp/6184865 to your computer and use it in GitHub Desktop.
def create
order = Order.find(params[:id])
result = order.checkout(params)
if result.success?
# do a thing
elsif result.failed_for_one_reason
# do another thing
elsif result.failed_for_another_reason
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment