Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a basic ruby loop

for video in site.posts
  video.some_parameter
endfor

I want to run this loop 2 or 3 times.

Is this possible?

share|improve this question
I am sorry to be asking such a simple question but I have reviewed the documentation, just still not sure how to run a for loop 3 times. – TJ Sherrill Oct 23 '12 at 18:25

1 Answer

up vote 9 down vote accepted
3.times do
   # do work here
end 

check http://www.tutorialspoint.com/ruby/ruby_loops.htm

share|improve this answer
so just run a do loop around the for loop? – TJ Sherrill Oct 23 '12 at 18:19
Yes, unless you want something different. If you try it and play with the code you will answer all\most of your questions. Just debug and print what the code is doing. – D3mon-1stVFW Oct 23 '12 at 18:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.