Skip to content

Instantly share code, notes, and snippets.

@phillipoertel
Created April 12, 2019 11:55
Show Gist options
  • Save phillipoertel/d1b30057ef4121a64acb13419264be34 to your computer and use it in GitHub Desktop.
Save phillipoertel/d1b30057ef4121a64acb13419264be34 to your computer and use it in GitHub Desktop.
created_organizations = {}
MedlineOrganization.find_each do |organization|
# ...
key = new_organization[:organization][:external_id]
if created_organizations[key]
print "x"
else
created_organizations[key] = zendesk_account.organizations.create(new_organization[:organization])
print "."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment