Skip to content

Instantly share code, notes, and snippets.

@briancollins
Created August 31, 2013 20:15
Show Gist options
  • Save briancollins/6400353 to your computer and use it in GitHub Desktop.
Save briancollins/6400353 to your computer and use it in GitHub Desktop.
def all_customers(args={}, count=50, offset=0)
rsp = Stripe::Customer.all(args.merge(:count => count, :offset => offset * count))
customers = rsp.data
if count * offset < rsp.count
customers += all_customers(args, count, offset + 1)
end
customers
end
all_customers.each(&:delete)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment