Last active
August 2, 2016 12:35
-
-
Save scaint/8e1c708bf0bf413bb5e44f32bbfe0715 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Cart::Checkout < Operation::Base | |
call do | |
Order.create(...) | |
end | |
before do | |
cancel! if cart.empty? | |
end | |
around do | |
... | |
yield | |
... | |
end | |
after(:success) do | |
send_customer_email_notification | |
send_admin_email_notification | |
... | |
end | |
end | |
Cart::Checkout.(cart_instance, customer) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment