Skip to content

Instantly share code, notes, and snippets.

@skwp
Created August 8, 2013 14:18
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/6184980 to your computer and use it in GitHub Desktop.
Save skwp/6184980 to your computer and use it in GitHub Desktop.
def create
CheckoutOrder.execute current_user, params, CreateResponseHandler.new(self)
end
class CreateResponseHandler < SimpleDelegator
def create_success
#...
end
def create_error
#...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment