Skip to content

Instantly share code, notes, and snippets.

@lesniakania
Created February 11, 2014 08:15
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 lesniakania/8930998 to your computer and use it in GitHub Desktop.
Save lesniakania/8930998 to your computer and use it in GitHub Desktop.
cloud = Panda::Cloud.find(cloud_id)
videos = []
page = 1
begin
videos_batch = cloud.videos.all(status: :processing, page: page, per_page: 100)
videos += videos_batch
page += 1
end while not videos_batch.empty?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment