Skip to content

Instantly share code, notes, and snippets.

@aishek
Last active August 17, 2016 08:14
Show Gist options
  • Save aishek/b7d2a9c5d32060643b33443d21919ed1 to your computer and use it in GitHub Desktop.
Save aishek/b7d2a9c5d32060643b33443d21919ed1 to your computer and use it in GitHub Desktop.
Secret case examples
def send_pick_up_email_async(order)
unless order.from_office?
if order.long?
Order::PickUpEmailWorker.perform_async(order.id)
else
Order::PickUpAndDropOffEmailWorker.perform_async(order.id)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment